Found this one in my toolkit recently and thought I’d share. It’s a little old so the code could do with some optimizing.. What it does: Prompts the script runner for a client number and then asks them to confirm the name […]
Another quick one, just to share…. 🙂 For a HA WAP deployment you will need to update each service of the pertinent url to ensure they are using the NLB endpoint rather than going direct to one of the servers.. This is […]
Another one from my toolkit.. Basically run this batch file from a folder with the required update files and it will install them all. Once it is finished it will prompt for any input to restart the server. Enjoy! Dan @ECHO OFF […]
Quick Tip!! So I was asked to create a custom property that gives a quick overview of the total size for the virtual disks on a VM So, leveraging of my DataStore script, I came up with the below.. Enjoy Note: This […]
Brilliant little tool Hrisan Dzhankardashliyski at Powershell.com http://powershell.com/cs/media/p/49052.aspx Edit: updated the script block to enable copy & paste 😀 # Author: Hrisan Dzhankardashliyski # Date: 20/05/2015 # Inspiration from # # http://blogs.msdn.com/b/opticalstorage/archive/2010/08/13/writing-optical-discs-using-imapi-2-in-powershell.aspx</a> # # and # # http://tools.start-automating.com/Install-ExportISOCommand/</a> # […]
As users of System Center Virtual Machine Manager would know, trying to quickly live migrate multiple VM’s can be a slow and tedious task. Whilst I always recommend to user of VMM to use the Migrate Virtual Machine function or the Start […]
 Quick Tip: Install Windows Features with PowerShell in bulk Using my current favourite PowerShell feature, Out-GridView, we can easily and quickly install windows features with a little gui.. The command: Get-WindowsFeature | Out-GridView –passthru | Install-WindowsFeature You will get an ogv […]
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
I recently had a POC WAP environment where the client wanted the web sites default domain changed. Ordinarily you can’t do this through the web ui nor is it recommended.. But that does not mean it’s not possible.. As the title suggests, […]
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 […]