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 MoreI’m kind of guy who loves tiny little tricks. Tricks in PowerShell are almost like Easter eggs in the games of old times, very rewarding when you find them – but in PowerShell besides pure joy of being able to find something cool, you can move it to …
Read MoreThe traditional or PowerShell 2.0 way of retrieving only files is: Get-ChildItem $env:windir | Where-Object { ! $_.PSIsContainer } The new parameter -File of the Get-ChildItem cmdlet simplifies the filtering:
Read MorePowerShell equivalent of the ping.exe utility is the Test-Connection cmdlet. One of the hidden and less known capabilities of Test-Connection is the abitlity to ping a computer using another computer as the source.
Read MoreIn Windows PowerShell 2.0, retrieving WMI associations and references required complex WMI queries. For example, if you wanted to get the IP address bound to a particular network adapter using WMI associations you would run:
Read MoreThe ConvertTo-Html cmdlet converts Microsoft .NET Framework objects into HTML that can be displayed in a Web browser. In the following example we pick up a few properties of process objects with name that contains the word ‘host’, sort the output by …
Read MoreWhen we use the Get-Module -ListAvailable command to list installed modules, we get a list of modules from two default module locations: one for the system and one for the current user.
Read More