Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Microsoft System Center Powershell Essentials

You're reading from   Microsoft System Center Powershell Essentials Efficiently administer, automate, and manage System Center environments using Windows PowerShell

Arrow left icon
Product type Paperback
Published in Apr 2015
Publisher Packt
ISBN-13 9781784397142
Length 140 pages
Edition 1st Edition
Arrow right icon
Toc

Table of Contents (10) Chapters Close

Preface 1. Setting up the Environment to Use PowerShell 2. Administration of Configuration Manager through PowerShell FREE CHAPTER 3. Scenario-based Scripting for SCCM Administration 4. Administration of Operations Manager through PowerShell 5. Scenario-based Scripting for SCOM Administration 6. Administration of Service Manager through PowerShell 7. Scenario-based Scripting for SCSM Administration 8. Best Practices Index

Adding classes to the SCSM allow list


This example demonstrates how as an SCSM administrator, we can add classes to the SCSM default allow list. The SCSM allow list is a list of classes to be used by the configuration item Operations Manager 2007 Connector during synchronization. To execute this, we need to import proper management packs to sync data from SCOM to SCSM and also, the object needs to sync to the allow list. Specific to this scenario, at times you might need to add more than one object to the SCSM allow list. Moreover Add-SCSMAllowListClass don't accept input from a pipe line. So, to address this issue, we will get all the class objects required synced with the SCSM allow list in one of the variables, and then pass on the variable to the –ClassName parameter, which in fact accepts array values:

$DemoClassNames = Get-SCSMClass | where {$_.Displayname -like "*win*"} 

Add-SCSMAllowListClass -ClassName $DemoClassNames

The preceding command statements get the result in the $DemoClassNames...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime