Was it helpful?

Question

How to start dependent services in PowerShell?

PowerShellMicrosoft TechnologiesSoftware & Coding

To start dependent service in PowerShell, it is unlike the stopping the dependent services with –Force parameter because there is no –Force parameter is available.

You need to first get the dependent services and then start them.

Get-Service -Name Winmgmt -DependentServices | Start-Service -Verbose
raja
Published on 22-Jan-2020 15:03:58
Advertisements
Was it helpful?
Not affiliated with Tutorialspoint
scroll top