How to find and manage service accounts in Windows 10 & 11

Brock Bingham candid headshot
Brock Bingham|March 4, 2024
General darkBlue
General darkBlue

Windows services aren’t something we talk about often. But in IT, that’s a good thing. If we’re not talking about something, that means it’s not broken. However, one password change can send services screeching to a halt faster than my productivity when the new Elden Ring DLC trailer dropped.

While I’m generally a fan of throwing caution to the wind and just waiting for the help desk tickets to roll in as a form of job security, there’s a more proactive approach. Here’s how to find services using specific credentials that should eliminate the sudden surge of support tickets when you change a service account password.

How to open Services and identify service accounts in Windows

The easiest and probably fastest way to open the services manager in Windows 10, Windows 11, and Windows Server is by entering services into the Windows search bar, then clicking on the Services app result. From here, you can browse the various services on your device, their statuses, and the accounts used to run the services.

Service manager windows in Windows OS.

While the Services app is a great way to view and manage the services on your computer, it’s not feasible to log in to computers one at a time searching for specific credentials in use by a service.

How to identify services in PDQ Inventory

PDQ Inventory scans and collects information from managed devices, including details about the services running on those devices, making it an ideal solution for tracking services using specific credentials.

To access the Services page in PDQ Inventory, double-click on any computer in Inventory, then click the Services menu item from the list on the left.

The Services page in PDQ Inventory.

The Services page in PDQ Inventory contains all the information you need about services running on your managed devices, including each service’s name, status, credentials, and more. Having this information centralized in Inventory makes it much easier to manage. More importantly, it makes it possible to aggregate all the information into an actionable report.

How to create a services report in PDQ Inventory

PDQ Inventory tracks and centralizes all the services data from our managed devices, which we can use to create useful reports. Our goal with these reports is to identify services using specific credentials. As you’ll see, Inventory gives us the tools we need to easily manipulate and customize reports to meet our needs.

Here’s how to create an account-specific services report in Inventory.

  1. In PDQ Inventory, click New Report > Basic Report.

    Creating a basic report in PDQ Inventory.

  2. Enter a name for the report. Hot tip: I like to use descriptive names so I don’t feel guilty when I don’t include an actual description. 😉

  3. The Column should include the Computer | Name | Computer entry by default. Add the Service | Title | Service Title, and the Service | Account | Service Account entries as well.

    Adding the necessary columns for a services report.

  4. Click on the Filters tab.

  5. Click the Add Value Filter button, then add the filter Service | Account | Contains | <target_username>.

    Add a filter to specify certain accounts.

  6. When you’re ready, click Save, then click Run Report.

The finished report should contain the services currently using the specified username and the computer name. In this example, I used my username as the target account, and here are the results.

Service report results.

Feel free to add additional columns to this report. such as the service status, start mode, and description. I would also recommend running a standard scan before running the report to ensure you have the most up-to-date and accurate information. To run a scan, right-click on All Computers, then click Scan Collection > Standard in PDQ Inventory.

Manually running a standard scan in PDQ Inventory.

Alternative ways to view services in Windows

PDQ Inventory is my favorite and arguably the easiest way to manage and track Windows services. Am I biased? Yes. Does that make me wrong? No.

But my goal is always to educate, assist, and encourage my fellow Windows warriors. As such, here are a few alternative ways to view the services running on your endpoints. Spoiler alert: PowerShell is the clear winner.

How to open Services using the Command Prompt

To launch Services from the Command Prompt, enter services.msc. This command launches the services manager as if you had opened it from the Windows search bar.

How to open Services through Control Panel

Here’s how to access Services using Control Panel.

  1. With Control Panel open, click System and Security.

    Navigating to the services window through Control Panel using the System and Security link.

  2. In Windows 10, click Administrative Tools. For Windows 11, click Windows Tools.

  3. Click Services.

    An image highlighting the services link in Windows Tools.

How to open Services from the Start menu in Windows 10

Here’s how to open the Services app from the Start menu in Windows 10.

  1. Click the Start button.

  2. Click to open the Windows Administrative Tools folder.

  3. Click Services.

    Finding services from the Start menu in Windows 10.

How to open Services from the Start menu in Windows 11

Here’s how to open the Services app from the Start menu in Windows 11.

  1. Click the Start button.

  2. Click All apps.

  3. Click Windows Tools. This opens the Windows Tools window.

  4. Click Services.

    Navigating to services from the Start menu in Windows 11.

How to identify and manipulate services data using PowerShell

PowerShell makes it easy to identify services and manipulate the returned data using the Get-Service cmdlet. In a PowerShell console window, enter Get-Service to return all the services on the local computer.

Results of running the Get-Service cmdlet in PowerShell.

Notice that the username is not automatically returned with just the base command. We can force it to return using the Select-Object cmdlet. Here’s the command:

Get-Service | Select-Object -Property ServiceName, UserName

Adding the service username to the PowerShell results.

Now we’ve got the services and the usernames tied to those services. We can take this a step further by filtering for specific usernames using the Where-Object cmdlet. Here’s the full command:

Get-Service | Where-Object -FilterScript {$_.UserName -like '*<username>'} | Select-Object -Property ServiceName, UserName

PowerShell Get-Service results returning just services running under a specific username.

Make sure you replace the <username> placeholder with the username you want to filter for.

This example highlights how capable PowerShell really is. And if it wasn’t time for me to rewatch the Elden Ring DLC trailer for the 27th time, I could continue to expand this example to include remote devices, CSV files, additional filters, exported results, and so on.

Suffice it to say that you can use PowerShell to achieve the results you’re looking for, given enough time and understanding. Or, if you’re like me, you could take the easy route and craft an incredibly valuable report with just a couple of mouse clicks using PDQ Inventory. If that sounds more enticing to you, go ahead and grab yourself a free trial of PDQ Inventory. Your future self will thank you.

Brock Bingham candid headshot
Brock Bingham

Born in the '80s and raised by his NES, Brock quickly fell in love with everything tech. With over 15 years of IT experience, Brock now enjoys the life of luxury as a renowned tech blogger and receiver of many Dundie Awards. In his free time, Brock enjoys adventuring with his wife, kids, and dogs, while dreaming of retirement.

Related articles