Category Archives: Development

Making PowerShell Interactive

By | January 11, 2019

Turn a Powershell script into an interactive application with: Out-GridView -PassThru | This code will pause your script and present you the data collected in a grid view. You can then select specific items in that view. When you hit OK at the bottom the script will proceed against just the selected items.