Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Microsoft System Center Powershell Essentials

You're reading from  Microsoft System Center Powershell Essentials

Product type Book
Published in Apr 2015
Publisher Packt
ISBN-13 9781784397142
Pages 140 pages
Edition 1st Edition
Languages

Table of Contents (15) Chapters

Microsoft System Center PowerShell Essentials
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
1. Setting up the Environment to Use PowerShell 2. Administration of Configuration Manager through PowerShell 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

Authoring


This topic involves the management of object discovery, reading and creating a new monitoring class, and reading and creating new groups.

Discovery management

Once the management pack is imported on the Operations Manger console, the next step is to enable discovery of objects on any particular group:

Get-SCOMDiscovery

PowerShell also allows us to disable the discovery of objects for any management pack. We can use the Disable-SCOMDiscovery cmdlet to disable the discovery of objects. Once the discovery is disabled, Operations Manager will stop monitoring the object with the rules and monitors defined in the management pack.

The following example will illustrate the usage of PowerShell to disable the discovery of the management pack. First, we are required to get the management pack for which we want to disable the discovery and class details. Then, we will use the Disable-SCOMDiscovery cmdlet to disable the discovery of objects:

$MP = Get-SCOMManagementPack –Name "Test.Guru.Com"
...
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 €14.99/month. Cancel anytime}