Related Articles
PowerShell – JSON-RPC 2.0 Interaction Connecting SCOM
SCOM is the best monitoring system on this planet but there are also other systems around. You might find yourself in a situation where you need to get some information from the other monitoring system into SCOM. Because there is probably not a supported connector for SCOM available we have to find a way to […]
SCOM 2012 SP1 – Part 3: Audit Collection Services (ACS) Testing Cross Platform Logging
In part 1 and part 2 we installed ACS for collection Windows and Linux events. In part 3 I am going to show how the cross platform ACS works in an easy example. In part 2 we had a close look at a specific rule called Delete User. I think this is a perfect example […]
PowerShell – Create a Credential Object with NULL Password
In one of my automation tasks I had the need to create a credential object with a $null password – an empty / NULL password. One easy way to do is, create just instantiate a new secure string object using the new() constructor from the .Net class like this: or using New-Object cmdlet like this […]