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 moreCategory: Quick Tips
MDT 2013 – Windows 8.1 & disable Hibernation
Disabling hibernation is simple enough (“powercfg.exe -h off”) but how would we do this in MDT. As with all things MDT, there is often more multiple ways to achieve the same goal. The two methods I would use are by the modifying the unattend.xml as described here or using a command line
Read morePowershell script to set speaker volume
On a recent MDT project the client requested to finish all builds with volume set at 30%. Being committed to doing everything in Powershell, I jumped on the book of knowledge looking for some inspiration. As luck would have it, I found this response from knuckle-dragger that performed the
Read more