Welcome to deBUG.to Community where you can ask questions and receive answers from Microsoft MVPs and other experts in our community.
0 like 0 dislike
1.2k views
in PowerShell by 8 8 10

I know I can type Services.MSC in the Run dialog to open the services, but I need to know How do I open Services from PowerShell?

how to open services from PowerShell


1 Answer

1 like 0 dislike
by 151 169 345
selected by
 
Best answer

To open Services from PowerShell or any other program, you have to use Start-Process

Example

Start-Process services.msc

start program in PowerShell

Start-Process is used to start one or more processes on the local computer, for more details, Please check Start-Process

If you don’t ask, the answer is always NO!
...