Make a graphical menu or GUI for your PowerShell Scripts

I found a fantastic tool this week that enables you to add a bunch of PowerShell scripts into a smart looking GUI and is very simple to use

I found the tool on weebsnore’s Github page here.   To get started simply open ISE as an admin and run the below command to install the module:

Install-Module PSScriptMenuGui

 

You will then need to make a .csv file listing all of the scripts you want to put in the GUI as in the example below.  I made a menu to organise my PLEX scripts:

Make a graphical menu or GUI for your PowerShell Scripts

Once you have this its simply a matter of calling the module and referencing the .csv file and that’s it!  This is the easiest way I’ve seen of getting a nice looking GUI to run your PowerShell scripts.

Show-ScriptMenuGui -csvPath 'C:\System\PlexScriptsGui.csv' -Verbose

 

See the completed GUI as below:

Make a graphical menu or GUI for your PowerShell Scripts-2

One Reply to “Make a graphical menu or GUI for your PowerShell Scripts”

  1. Where did you come up with the Plex update exe’s?? If you wouldn’t mind passing that along, I’d appreciate it!!

Leave a Reply

Your email address will not be published. Required fields are marked *