Blog Post

Core Infrastructure and Security Blog
1 MIN READ

PowerShell Command to Approve SCOM Agents Listed in a Text File

Jimmy Harper's avatar
Jimmy Harper
Occasional Reader
Mar 13, 2019

First published on TECHNET on Dec 15, 2015

 

My customer has a lot of manually installed SCOM Agents that have not yet been approved in the console, and wanted a quick way to approve only the ones that are listed in a text file.

The following PowerShell command can take care of this pretty easily (modify the C:\Servers.txt path as needed). Also, be sure that the servers are in FQDN format in the text file (Server.Domain.com).

Foreach ($Computer in (Get-Content C:\Servers.txt)) {Get-SCOMPendingManagement | where {$_.AgentPendingActionType -eq "ManualApproval" -and $_.AgentName -eq $Computer}| Approve-SCOMPendingManagement}

Updated Feb 20, 2020
Version 2.0
No CommentsBe the first to comment