Jump to content

Torsten

Members
  • Posts

    2
  • Joined

  • Last visited

About Torsten

  • Birthday 05/20/1970

Torsten's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. i have a idea ... show this codepice ; This is a customisation of a Scriptomatic VBS Script ; This is only for Demonstration ;----------------------------------------------------------- Dim Const $wbemFlagReturnImmediately = 0x10 Dim Const $wbemFlagForwardOnly = 0x20 $oWMIService = ObjGet("winmgmts:\\" & @ComputerName & "\root\CIMV2") If Not @error Then $oItems = $oWMIService.ExecQuery("SELECT * FROM Win32_Process", "WQL", $wbemFlagReturnImmediately + $wbemFlagForwardOnly) For $Item In $oItems ConsoleWrite("Name: " & $Item.Name & "ProcessId: " & $Item.ProcessId & "CommandLine: " & $Item.CommandLine & @LF) Next EndIfthis will get you a list of all running processes in the order of starttime you can get many additional infos to the processes se on msdn greeting Torsten
  2. Hello, i have a suggestion for your script. If i switch the virtual desktop to an any, and come back to the prevories Desktop then the elements in the Taskbar have an any order. Can you chance this ? sorry for my badly english. many greetings Torsten
×
×
  • Create New...