Related Articles
Advanced Threat Analytics – Silent Installation “Adventure”
Well I love to automate things a lot using PowerShell – really I do! The success of automation depends on two major things. First there are the detailed requirements and secondly technical documentation of your stuff you want to automate. In reality, most projects do not cover both parameters in a satisfying way at all. […]
SCOM 2012 – Linux Discovery “Unspecified failure”
Today I had a very interesting error for troubleshooting. A customer has about 150 Linux servers which he wants to monitor using SCOM 2012. The customer could deploy all Linux agents except for 4 Linux servers. After each attempt to discover one of these troublesome servers the discovery wizard ended shortly after the starting with […]
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 […]