Related Articles
Azure Automation – Twitter + IFTTT + Webhook = Start Runbook
I assume you know Twitter and you probably also know what a webhook is, right? No? Ok, a webhook is just a HTTP POST. In Azure Automation we are able to create a webhook for a runbook. This runbook will “consume” the webhook request (URL) + post data and start the runbook. The cool thing […]
Fixing Citrix WMI errors 0x80041001 / 0x80041002 – XenApp 6
I am sure during your Operations Manager career you already faced some WMI errors while installing e.g. Active Directory or XenApp management packs. A few days ago I installed the XenApp 6.0 MP in SCOM 2007 R2. Suddenly errors 0x80041001 and 0x80041002 appeared in Active Alerts view. WMI errors are always kind of pain in […]
Quick Post – Get Cmdlet Related DLL
In some situation you are running a cmdlet, but you have no idea where it is stored. I mean you don’t know to which “*.dll” it belongs to or maybe you want to know some more details about the command. A very easy way to figure this out for the Get-AzureRmResource cmdlet… (Get-Command Get-AzureRmResource).DLL …as […]