Start Multiple Windows Services Using PowerShell



To start multiple services with PowerShell, we need to use comma (,) between services.

For example,

Start-Service -Name Spooler,AdobeARMservice -Verbose


Get-Service -Name Spooler,AdobeARMservice | Start-Service -Verbose

To start the services with display name,

Start-Service -Name “Print Spooler”, “Work Folder” -Verbose


Get-Service -Name “Print Spooler”, “Work Folder” | Start-Service -Verbose
Updated on: 2020-01-22T10:33:25+05:30

3K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements