├── .gitignore ├── LICENSE ├── PSScriptMenuGui ├── PSScriptMenuGui.psd1 ├── PSScriptMenuGui.psm1 ├── examples │ ├── PSScriptMenuGui.ps1 │ ├── PSScriptMenuGui_all_options.ps1 │ ├── example_data.csv │ ├── example_target.cmd │ ├── example_target.ps1 │ ├── example_text_file.txt │ └── pwsh7.ico ├── private │ └── functions.ps1 ├── public │ └── functions.ps1 └── xaml │ ├── end.xaml │ ├── heading.xaml │ ├── item.xaml │ └── start.xaml ├── README.md ├── demo.gif ├── demo.mp4 └── excel.png /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/LICENSE -------------------------------------------------------------------------------- /PSScriptMenuGui/PSScriptMenuGui.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/PSScriptMenuGui/PSScriptMenuGui.psd1 -------------------------------------------------------------------------------- /PSScriptMenuGui/PSScriptMenuGui.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/PSScriptMenuGui/PSScriptMenuGui.psm1 -------------------------------------------------------------------------------- /PSScriptMenuGui/examples/PSScriptMenuGui.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/PSScriptMenuGui/examples/PSScriptMenuGui.ps1 -------------------------------------------------------------------------------- /PSScriptMenuGui/examples/PSScriptMenuGui_all_options.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/PSScriptMenuGui/examples/PSScriptMenuGui_all_options.ps1 -------------------------------------------------------------------------------- /PSScriptMenuGui/examples/example_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/PSScriptMenuGui/examples/example_data.csv -------------------------------------------------------------------------------- /PSScriptMenuGui/examples/example_target.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/PSScriptMenuGui/examples/example_target.cmd -------------------------------------------------------------------------------- /PSScriptMenuGui/examples/example_target.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/PSScriptMenuGui/examples/example_target.ps1 -------------------------------------------------------------------------------- /PSScriptMenuGui/examples/example_text_file.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /PSScriptMenuGui/examples/pwsh7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/PSScriptMenuGui/examples/pwsh7.ico -------------------------------------------------------------------------------- /PSScriptMenuGui/private/functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/PSScriptMenuGui/private/functions.ps1 -------------------------------------------------------------------------------- /PSScriptMenuGui/public/functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/PSScriptMenuGui/public/functions.ps1 -------------------------------------------------------------------------------- /PSScriptMenuGui/xaml/end.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/PSScriptMenuGui/xaml/end.xaml -------------------------------------------------------------------------------- /PSScriptMenuGui/xaml/heading.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/PSScriptMenuGui/xaml/heading.xaml -------------------------------------------------------------------------------- /PSScriptMenuGui/xaml/item.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/PSScriptMenuGui/xaml/item.xaml -------------------------------------------------------------------------------- /PSScriptMenuGui/xaml/start.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/PSScriptMenuGui/xaml/start.xaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/demo.gif -------------------------------------------------------------------------------- /demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/demo.mp4 -------------------------------------------------------------------------------- /excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-osull/PowerShell-Script-Menu-Gui/HEAD/excel.png --------------------------------------------------------------------------------