Using Set-Service
, I'm able to change the StartType
of my services between the accepted values of Boot, System, Automatic, Manual, Disabled
. Using services.msc
, I'm able to set some services to startup with a Priority of Automatic (Delayed Start). However, Get-Service
still reports these delayed-start services as StartType : Automatic
, and Set-Service
errors out when attempting to set these values.
Am I able to set this property via powershell? Or am I limited to the UI or GPO?