I like using command type tools, in stead of the GUI. One of my favourites is surely Powershell. Now what I find disappointing is that you cannot get the start-up type of a service using the get-service cmdlet. The only way to get the startup type and compare it to its current status is using WMI.
Following comandlet lists of service where the startup type is set to automatic but where the current status is stopped.
[Code]
Get-WmiObject -Class Win32_Service -Filter "StartMode='Auto' AND
State='Stopped'" | sort DisplayName | Format-Table DisplayName,
StartMode, State
[/Code]
No comments:
Post a Comment