#TodayILearned that you can disable a service in Powershell like this:
get-service -computername SomeComputer -name ‘SomeService’ | Set-Service -StartupType disabled
#TodayILearned that you can disable a service in Powershell like this:
get-service -computername SomeComputer -name ‘SomeService’ | Set-Service -StartupType disabled