PowerShell by Patrik

List All Services

To see all the services on your system, use the Get-Service cmdlet:

Get-Service
 

This outputs a list showing:

  • Name: The internal service name.
  • DisplayName: A user-friendly name.
  • Status: Indicates whether the service is running, stopped, or paused.

This command helps you get an overview of all services and their current state.

Comments