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