PATCH MANAGEMENT FOR EDUCATIONAL INSTITUTIONS

Thursday | 12 PM EDT / 6 PM CEST

Action1 5 How-to Articles 5 Finding All Exchange Service Accounts Used on PCs

Finding All Exchange Service Accounts Used on PCs

January 4, 2019

By Peter Barnett

A lot of data breaches start with attacks on privileged service accounts. An important step in proactively locking the security of your corporate network is to find all Exchange service accounts.

This article explains how to list Exchange service accounts using Action1 to find service accounts in domain Windows server 2008 r2 or other operating systems and also shows how to list service accounts from the command line for organizations that are not able to utilize Action1 in their environments.

Find Exchange Service Accounts Manually:

1. Execute WMI Query in ROOT\\\\CIMV2 Namespace:

  1. Launch WMI Explorer or any other tool which can run WMI queries.
  2. Run WMI query: SELECT * FROM Win32_Service

2. Open WMIC Command-line Interface:

  1. Press WIN+R
  2. Type “wmic”, press Enter
  3. In wmic command line tool type: /node:RemoteComputerName service

3. Run This Simple Windows Powershell Script:

Thru WMI object: Get-WmiObject-Namespace ROOT\\\\CIMV2 -Class Win32_Service -Computer RemoteComputerName

4. Use Following Code to Select Specific Columns:

Execute: Get-WmiObject -Namespace ROOT\\\\CIMV2 -Class Win32_Service -Computer RemoteComputerName | Select-Object DisplayName, Started, StartMode, StartName, PSComputerName

5. Sort the Results Using the Line Below:

Invoke command: Get-WmiObject –Namespace ROOT\\\\CIMV2 -Class Win32_Service -Computer RemoteComputerName | Select-Object DisplayName, Started, StartMode, StartName, PSComputerName | Sort-Object DisplayName

6. The Next Code Helps to Filter Results:

Use it: Get-WmiObject -Namespace ROOT\\\\CIMV2 -Class Win32_Service -Computer RemoteComputerName | Select-Object DisplayName, Started, StartMode, StartName, PSComputerName | Where-Object -FilterScript {$_.DisplayName -like “*Exchange*”}

7. Save Results to CSV File:

Run: Get-WmiObject -Namespace ROOT\\\\CIMV2 -Class Win32_Service –Computer RemoteComputerName | Select-Object DisplayName, Started, StartMode, StartName, PSComputerName | Export-CSV “c:\\\\file.csv” -Append -NoTypeInformation

8. The Next Step Is to Query Multiple Computers:

Computers from a text file: Get-Content -Path c:\\\\computers.txt | ForEach-Object {Get-WmiObject -Namespace ROOT\\\\CIMV2 -Class Win32_Service -Computer $_}
Computers from AD domain: Get-ADComputer -Filter {OperatingSystem -Like ‘Windows 10*’} | ForEach-Object {Get-WmiObject -Namespace ROOT\\\\CIMV2 -Class Win32_Service -Computer $_.Name}

How to Uninstall Software Using Action1:

Action1 is a cloud-based solution for remote endpoint management that encompasses a comprehensive reporting tool that allows you to quickly gather valuable insights on your managed endpoints. Among hundreds of other built-in features, it allows finding all Exchange service accounts used on endpoints. After the discovery is done, you can manage service account passwords and perform other maintenance operations.

Step 1: Get started with Action1 for Free

Sign up to a free version of the Action1 solution and install Action1 agents to your remote endpoints to manage them remotely. Here is the detailed instruction on how to get started.

 

Step 2 Type Your Question in Plain English:

Action1 allows to find all Exchange service accounts used on multiple endpoints or manage service account passwords and perform maintenance operations. - search query

Step 3 Set Filters, If Necessary:

How to Find All Exchange Service Accounts Used on PCs

Step 4 See Results from All Endpoints in Seconds:

Endpoint Name

mac.widgets.local
fred.widgets.local
ray.widgets.local

Display Name

SQL Server
MS Exchange
File Backup

Started

True
True
False

User Name

WIDGETSsql1
WIDGETSxch
WIDGETSb1

State

Running
Running
Stopped

See What You Can Do with Action1

 

Join our weekly LIVE demo “Patch Management That Just Works with Action1” to learn more

about Action1 features and use cases for your IT needs.

 

spiceworks logo
getapp logo review
software advice review
trustradius
g2 review
spiceworks logo

Related Posts

No Results Found

The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.