A GUI to launch any PowerShell script, function, or any other executables. You have the option to run any of these options as a normal user or as an Admin. Everything is saved in a json config file. Also created menu items that assists in creating the buttons, panels, and colour schemes. There is no need to manually edit the config file.
- Install from PowerShell Gallery PS Gallery
Install-Module -Name PSLauncher -Verbose
- or run this script to install from GitHub GitHub Repo
$CurrentLocation = Get-Item .
$ModuleDestination = (Join-Path (Get-Item (Join-Path (Get-Item $profile).Directory 'Modules')).FullName -ChildPath PSLauncher)
git clone --depth 1 https://github.com/smitpi/PSLauncher $ModuleDestination 2>&1 | Write-Host -ForegroundColor Yellow
Set-Location $ModuleDestination
git filter-branch --prune-empty --subdirectory-filter Output HEAD 2>&1 | Write-Host -ForegroundColor Yellow
Set-Location $CurrentLocation
- Then import the module into your session
Import-Module PSLauncher -Verbose -Force
- or run these commands for more help and details.
Get-Command -Module PSLauncher
Get-Help about_PSLauncher
Documentation can be found at: Github_Pages
Edit-PSLauncherConfig
-- Add a button or panel to the config.New-PSLauncherConfigFile
-- Creates the config file with the provided settingsStart-PSLauncher
-- Reads the config file and launches the GUIStart-PSLauncherColorPicker
-- Launches a GUI form to test and change the Color of PSLauncher.