Powershell Script
So to carry this out, you should create a txt file with the list of device names in it and then run the below Powershell script as an administrator:$Servers = Get-Content C:TGHserverlist.txt
Invoke-Command -ComputerName $Servers -ScriptBlock
{
if ((Get-Service -Name spooler).Status -ne "Running")
{
Start-Service -Name spooler
}
}
Variables
The variables you will be most interested in changing are:- C:TGHserverlist.txt – this is the file location and filename of the text file that you have created with all the device names in where you want to start the service. You can manually fill this in or use an Active Directory export or gather it from Configuration Manager data. The only information in there is the NETBIOS name of each device.
- Spooler – this is the name of the service that you wish to restart. For this guides purpose we have used the Print Spooler – with the service name being Spooler:
Remember not to use the Display Name of Print Spooler.
Then go ahead and run the Powershell script and it will go through your full list of devices from the txt file that you created and restart the single service on each of the devices.
Feedback
If you have any questions or feedback on this guide, then please feel free to leave us a message below in our comments section. Don’t forget that you can also download this guide as a free PDF eBook.Gear We Recommend
Testing configs is easier with a dedicated admin machine set up right. Here’s the kit we use.
Browse our Windows Admin Toolkit picks on AmazonAs an Amazon Associate, TechyGeeksHome earns from qualifying purchases.
Discover more from TechyGeeksHome
Subscribe to get the latest posts sent to your email.