Wir sind für alle da, die Skripts für die Systemverwaltung schreiben. Das Microsoft Script Center ist darauf spezialisiert, Benutzer in die Verwendung von Windows PowerShell und VBScript einzuführen, damit Sie weniger Zeit für banale Aufgaben aufwenden müssen.
Hey, Scripting Guy! Blog (engl.)
Script Center â Homepage
PowerTip: Use PowerShell to Return Only Processes that Display a Start Time Summary: Use Windows PowerShell to display processes that return a StartTime property value.
How can I filter process information so that only processes that return a StartTime display?
Use Where-Object with the Get-Process cmdlet. Then filter on StartTime.
Get-Process | ? starttime | select name, starttime
The following command uses Windows PowerShell 2.0 syntax:
Get-Process | ? { $_.starttime} | select name, starttime