Powershell Quick Tips SCOM Windows Server

Set Agent Proxy Default setting – SCOM 2012 R2

Run this on any server that has the SCOM Console installed. add-pssnapin “Microsoft.EnterpriseManagement.OperationsManager.Client”; new-managementGroupConnection -ConnectionString:scomserver.domain.com; set-location “OperationsManagerMonitoring::”; Set-DefaultSetting -Name HealthService\ProxyingEnabled -Value True Totally stole this from the SCOM aficionado – Kevin Holman. His post is here Cheers’ Dan

Read more
Powershell SCOM SQL Windows Server

SCOM 2012 R2 – Moving the operationsmanager DB from SQL server to new SQL Cluster

MovingĀ SCOM 2012 R2 operationsdatabaseĀ to SQL Cluster. Process derived from this TechNet article http://technet.microsoft.com/en-au/library/hh278848.aspx Quick overview of the environment Versioning of my environment: System Center Operations Manger 2012 R2 w/ Update Rollup 4 SQL Server 2012 SP1 CU8 Windows Server 2012 R2 Existing servers and role: OM01 – Management Server OM02

Read more
Powershell Quick Tips SCOM

SCOM 2012 R2 – Enable Agent Proxy

Just a quick note on how to enable agent proxy via PowerShell AssumptionsĀ in this scenario: SCOM 2012 R2 – UR3 Using Operations Manager Shell You want all Agents with proxy enabled Some basics: Get-SCOMAgent Let’s limit our scope.. Get-SCOMAgent | where {$_.ProxyingEnabled -match $False} Let’s enable the proxy for all

Read more