Affichage des articles dont le libellé est MP. Afficher tous les articles
Affichage des articles dont le libellé est MP. Afficher tous les articles

2 avr. 2012

New Management packs for the System Center Suite 2012

16 juil. 2011

Provance IT Asset Management Pack for Microsoft System Center Service Manager 2010

For over 13 years, Provance® IT Asset Management software has been used by mid- to large-sized enterprises and government organizations to drive down IT costs, increase service management efficiency, and reduce security and compliance risks.

The new Provance IT Asset Management Pack is a Process Management Pack that runs within Microsoft® System Center Service Manager 2010. It complements the Incident, Problem and Change Management capabilities of Service Manager with powerful IT Asset Life Cycle Management and Software Asset Management. Supporting ITIL® and the Microsoft Operations Framework, Provance strengthens the IT effectiveness of companies at every level of the Microsoft Core Infrastructure Optimization model. 

A Microsoft Gold Certified Partner, Provance holds the Microsoft Softare Asset Management and Systems Management Competencies and is a member of the Microsoft System Center Alliance.








Company : http://www.provance.com

 

Resources


Management Pack for MDOP MBAM

Management Pack for MDOP (Microsoft Desktop Optimization Pack) MBAM (Microsoft BitLocker Administration and Monitoring ). 


This management pack monitors the critical interactions within the server-side infrastructure, such as the connections between the three web services and the two databases, the operational calls between the two web sites and their supportive web service, and finally upload requests between the desktop clients and their respective receiving web service endpoints. 


What is Microsoft BitLocker Administration and Monitoring ? Click Here 


Download the MP

15 mars 2011

What management packs are applied to your SCOM agents

What management packs are applied to your agents ? It is something not really easy.
For each agent you retreive all objects discovered related to the agent, then you can retreive all the classes of thoses objects, so you are able to retreive the management applied to the Agent

$agent=Get-Agent
$max=$agent.count
$t=0
"Retreiving all Classes"
$AllMP = New-Object System.Collections.Hashtable

$servers=@()
$record = New-Object system.object
$record  | add-Member -memberType noteProperty -name "Server" -Value "NA"
Get-ManagementPack | where  {$_.sealed -eq $TRUE } | sort -Property Name |foreach {
    $mpname=$_.Name
    $record | add-Member -memberType noteProperty -name $mpname -Value "No"
    $mpname
    $_.GetClasses() |  foreach { $AllMP[$_.Name.tostring()]=$mpname }
  
    }
$servers+=$record

$agent |% {
    write-progress -activity "Dealing with"  -status "% Complete:" -percentcomplete ($t*100/$max)
    $record = New-Object system.object
    $record | add-Member -memberType noteProperty -name "Server" -Value $_.PrincipalName
    $_.HostComputer.GetRelatedMonitoringObjects() | % {
        $record | add-Member -memberType noteProperty -Force -name $AllMP[$_.GetLeastDerivedNonAbstractMonitoringClass().Name] -Value "Yes"
        }
    $servers+=$record
    $t++
}
$servers