Related Articles
Quick Post – Linux + PowerShell + DSC Blog Posts @ Hey, Scripting Guy! Blog
I would like to make you aware of a 3-part blog post series, which I have written for THE Microsoft Hey, Scripting Guy! Blog . Because I really like these blog post series and of course the blog itself a lot , I want to share it with you. The first part shows you, how […]
Azure Log Analytics – Testing JOINs Part 2
In part 1 we got a pretty good understanding how joins work and what the results are. To make this a complete series we will now work on the remaining join types. Full Outer The fullouter join is a join that shows in addition to the inner matches, there’s a row for every row on […]
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 […]