database-tools

Current Script Path

In PowerShell 1.0 and 2.0, you needed a lot of weird code to find out the current script location: # make sure the script is saved and NOT...

read more

Change ISE Zoom Level

The PowerShell ISE sports a zoom slider at its lower right edge, and you can control this slider with PowerShell code. So you could set defaults for...

read more

Unzipping ZIP Files

In PowerShell 5.0, there is a new cmdlet that can unzip ZIP files: #requires -Version 5 $Source = 'C:\somezipfile.zip' $Destination =...

read more

Testing a Network Port

To see whether you can access a remote computer via a given network port, here is a test function called Test-Port; it takes a remote computer name...

read more

Finding Logged On Users

In a previous tip we explained how you find the physically logged on user. In this tip you will see how you can list the current logon sessions,...

read more

Get Command History as File

The built-in PowerShell ISE editor that ships with PowerShell 3.0 or better can be customized, and you can add your own menu items. When you run the...

read more