Was it helpful?

Question

How to start windows service with display name in PowerShell?

PowerShellMicrosoft TechnologiesSoftware & Coding

To stop the service using display name, use the parameter –DisplayName.

For Example,

PS C:\> Start-Service -DisplayName "Print Spooler" -Verbose
VERBOSE: Performing the operation "Start-Service" on target "Print Spooler (Spooler)".

You can also start the service with display name using,

PS C:\> Get-Service -DisplayName "Print Spooler" | Start-Service -Verbose
raja
Published on 22-Jan-2020 15:02:28
Advertisements
Was it helpful?
Not affiliated with Tutorialspoint
scroll top