EDUCBA Logo

EDUCBA

MENUMENU
  • Explore
    • EDUCBA Pro
    • PRO Bundles
    • Featured Skills
    • New & Trending
    • Fresh Entries
    • Finance
    • Data Science
    • Programming and Dev
    • Excel
    • Marketing
    • HR
    • PDP
    • VFX and Design
    • Project Management
    • Exam Prep
    • All Courses
  • Blog
  • Enterprise
  • Free Courses
  • Log in
  • Sign Up
Home Data Science Data Science Tutorials PowerShell Tutorial PowerShell Get-Service
 

PowerShell Get-Service

Chirag Nagarekar
Article byChirag Nagarekar
EDUCBA
Reviewed byRavi Rathore

Updated February 28, 2023

PowerShell Get-Service

 

 

Introduction to PowerShell Get-Service

Get-Service cmdlet in PowerShell is used for retrieving the services (Operating systems and applications) installed on the local computer and the remote computers as well along with their Start type, status, name and display name of the services. PowerShell console will display all the services which are present in the Services.msc MMC.  By default Get-Service cmdlet provides the information about local computer services until the –ComputerName parameter specified for the remote computers. We can also retrieve the dependent services with this cmdlet. This cmdlet is part of the Microsoft.PowerShell.Management module.

Watch our Demo Courses and Videos

Valuation, Hadoop, Excel, Mobile Apps, Web Development & many more.

Syntax

Get-Service
[[-Name] <String[]>] [[-DisplayName] <String[]>
[-DependentServices] [-RequiredServices] [-Include <String[]>] [-Exclude <String[]>] [-InputObject <ServiceController[]>] [<CommonParameters>]

Parameters

Below are the parameters:

  • Name: This parameter is for the name or alias name of the service. It is a string object. You can provide multiple services names (aliases) separated by comma (,). Wildcard character (*) is permitted. For example, the spooler is the alias name of the “Print Spooler” service.
  • DisplayName: This parameter is for the display name of the service. It is a string datatype. You can provide multiple display names separated by comma (,). Wildcard character (*) is permitted. For example, “Windows Management Instrument” is the display name of the winmgmt service alias.
  • DependentServices: When this parameter is specified, it retrieves the dependent services of the provided service name. This parameter must be used with the –Name or the –DisplayName parameter, otherwise, PowerShell will retrieve all the dependent services.
  • RequiredServices: This parameter specifies the services which are required to start the given service(s). You must specify the –Name or –DisplayName parameter, otherwise, PowerShell will retrieve all the required services.
  • Include: This parameter specifies the service name to include while retrieving the Service information. The value of this parameter qualifies the Name You can use the wildcard character (*). For example, When you specify S*, it will retrieve all the services that start with the S.
  • Exclude: This parameter specifies the service name to exclude while retrieving the set of services information. The value of this parameter qualifies the Name You can use the wildcard character (*). For example, when you specify S*, it will retrieve all the services excluding services starting with S*.
  • InputObject: You can provide multiple services as a variable to the input object parameter to retrieve the services from Get-Service cmdlet.
  • CommonParameters: These parameters are for the error and warning handling, debug, verbose, etc.. parameters. For example, -ErrorAction, -ErrorVariable, -WarningVariable, -WarningAction, -Verbose, -Debug, -OutBuffer, -OutVariable.

Examples to Implement PowerShell Get-Service

Below are examples to implement:

1. Get-Service with the – Name Parameter

When you don’t specify any parameter with Get-Service cmdlet, it default takes the –Name parameter. To retrieve the service information with the –Name parameter, we need to provide the valid service name. The default output will be Status, Name and DisplayName format.

Code #1

Get-Service -Name Winmgmt

Output:

Name ParameterPowerShell Get-Service - 1

Explanation: You can also use the wildcard to retrieve the information.

Code #2

Get-Service -Name Win*

Here, Get-Service will retrieve all the services starting with the “Win”.

Output:

Name Parameter

Explanation: You can get the multiple services information with the –Name parameter by separating them with a comma (,).

Code #3

Get-Service -Name Winmgmt, WinRM, Spooler

Output:

Name Parameter

2. Get-Service with the – DisplayName parameter

You can provide the displayname parameter to the Get-Service cmdlet to retrieve services information.

Code #1

Get-Service -DisplayName "Print Spooler"

Output:

DisplayName parameter

To use the wildcard character (*),

Code #2

Get-Service -DisplayName "*Spooler*"

Output:

DisplayName parameter

3. Get-Service with the – DependedService

To get the depended services information of the particular service, use the below command.

Code #1

Get-Service Winmgmt -DependentServices

Output:

DependedService

Explanation: In the above output, the Windows management instrument service is dependent on the given services in the output.

This parameter also works with the Display name and the Wildcard character and even for the multiple services.

Code #2

Get-Service -DisplayName "Windows Management Instrumentation" -DependentServices

Output:

DependedService

Explanation: You can check the same in the Services property in the “depends on” the section from the Services.msc console.

DependedService

4. Get-Service with the – RequiredService

With this parameter, you will get the required services information (particular service which depends on the other services).

Code #1

Get-Service Winmgmt -RequiredServices

Output:

RequiredService

Explanation: The above output mentions that the RPCSS service is required for Winmgmt service. Meaning that Winmgmt service is in the dependent list of the RPCSS service. You can check the same in the service property.

Output:

PowerShell Get-Service - 10

5. Get-Service with the – Include Parameter

When you use the include parameter, it searches for the content mentioned after include parameter.  Wildcard character (*) is accepted. For example,

Code #1

Get-Service -Include S*, *print*

Output:

PowerShell Get-Service - 11

Explanation: The above command will include all the services that start with S and contain Print in the service name. you can retrieve the same output with the Name parameter as well.

6. Get-Service with the – Exclude parameter

With the exclude parameter, service names are excluded and the rest of the services will be displayed.

Code #1

Get-Service -Exclude S*, A*, *Windows*

Explanation: The above command excludes services starting with S, A and which contain Windows in the output command.

Output:

PowerShell Get-Service - 12

Explanation: You can only qualify search for the Name parameter but not for the others like DisplayName, Start type, etc.

7. Get-Service with the Format-List

Get-Service cmdlet provides the default output, which contains only a few table items like Display Name, Name, and status but if you want to display all the properties then pipeline the Format-List * (fl *) alias.

Code #1

Get-Service Spooler | Format-List *

Output:

PowerShell Get-Service - 13

8. Get-Service with the Select-Object Pipeline

You can retrieve the selected properties with the Select-Object (alias: Select) parameter.

Code #1

Get-Service winmgmt, winrm | Select Name, DisplayName, Starttype, Status

Output:

PowerShell Get-Service - 14

Conclusion

With the Get-Service you can retrieve the service information on the local computer and the remote computers, but you can also pipeline Start-Service and Stop-Service to Start or stop the services on local and remote computers.

Recommended Articles

This is a guide to PowerShell Get-Service. Here we discuss Syntax, parameters and top 8 examples to implement with proper codes and outputs. You can also go through our other related articles to learn more –

  1. PowerShell Get-Process
  2. PowerShell Get-Item
  3. PowerShell Get-Content
  4. PowerShell Grep

Primary Sidebar

Footer

Follow us!
  • EDUCBA FacebookEDUCBA TwitterEDUCBA LinkedINEDUCBA Instagram
  • EDUCBA YoutubeEDUCBA CourseraEDUCBA Udemy
APPS
EDUCBA Android AppEDUCBA iOS App
Blog
  • Blog
  • Free Tutorials
  • About us
  • Contact us
  • Log in
Courses
  • Enterprise Solutions
  • Free Courses
  • Explore Programs
  • All Courses
  • All in One Bundles
  • Sign up
Email
  • [email protected]

ISO 10004:2018 & ISO 9001:2015 Certified

© 2025 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
Loading . . .
Quiz
Question:

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

By continuing above step, you agree to our Terms of Use and Privacy Policy.
*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you

EDUCBA Login

Forgot Password?

🚀 Limited Time Offer! - 🎁 ENROLL NOW