27Sep/100
Pausing PowerShell
Ever wondered how to use the pause function of DOS in PowerShell. Look no more. Here’s the script to do this:
Write-Host "Press any key to continue ..."$x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")
More info here: http://technet.microsoft.com/en-us/library/ff730957.aspx
