Stop and disable a Windows service using powershell

From roonics
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Create a file called computers.txt and populate it as below:

server01
server02
server03

Change the service name below to match what it is you want to stop and disable, save this script in the same location as computers.txt:

$SrvNames = Get-Content -Path 'C:\data\scripts\computers.txt'

foreach ($Server in $SrvNames)
{
	Get-Service -Name "Rubrik Backup Service" -ComputerName $Server | Stop-Service -PassThru | Set-Service -StartupType disabled
}

‎<comments />