Announcing PowerShell, DevOps, and Cloud Conference 2021
PowerShell Conference Asia 2019 was a huge success. The attendee turnout was …
Read MorePowerShell Conference Asia 2019 was a huge success. The attendee turnout was …
Read MoreWhat Posh-SSH is a PowerShell 3.0 or newer module for automating tasks against …
Read MoreOsama Sajid from the Windows Management Infrastructure team blogged about two WMI cheat sheets created by the WMI team. The first cheat sheet contains information to get you started with the CIM cmdlets in PowerShell 3.
Read MoreThese videos were released yesterday on YouTube. They are part of the Windows Server 2012 Jump Start video series published on Microsoft TechNet.
Read MoreNote: This tip requires PowerShell 3.0 or above. PowerShell lets you control how it responds to a non-terminating error (an error that does not stop the cmdlet processing) globally via the $ErrorActionPreference preference variable, or at a cmdlet …
Read MoreNote: This tip requires PowerShell 3.0 or above. The Send-MailMessage cmdlet enables you to quickly and easily send e-mail message from within Windows PowerShell.
Read MoreThere are certainly many methods to compare strings in PowerShell. Today, I will show you one of the methods that I recently came across — a less known method, maybe.
Read MoreConsider the following function: function test { $myNumbersCollection = 1..5 if($myNfunction test { $myNumbersCollection = 1..5umbersColection -contains 3) { "collection contains 3" } else { "collection doesn't contain 3" } } By …
Read More