├── .gitattributes ├── .github └── FUNDING.yml ├── CNAME ├── ChooseMenuUsage.md ├── InteractiveMenu ├── InteractiveMenu.psd1 └── InteractiveMenu.psm1 ├── LICENSE ├── MultiMenuUsage.md ├── README.md ├── _config.yml ├── logo.png ├── sample-choosemenu.ps1 └── sample-multimenu.ps1 /.gitattributes: -------------------------------------------------------------------------------- 1 | *.psd1 text eol=crlf -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: bibistroc 2 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | powershell-menu.gbarbu.eu -------------------------------------------------------------------------------- /ChooseMenuUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibistroc/powershell-interactive-menu/HEAD/ChooseMenuUsage.md -------------------------------------------------------------------------------- /InteractiveMenu/InteractiveMenu.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibistroc/powershell-interactive-menu/HEAD/InteractiveMenu/InteractiveMenu.psd1 -------------------------------------------------------------------------------- /InteractiveMenu/InteractiveMenu.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibistroc/powershell-interactive-menu/HEAD/InteractiveMenu/InteractiveMenu.psm1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibistroc/powershell-interactive-menu/HEAD/LICENSE -------------------------------------------------------------------------------- /MultiMenuUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibistroc/powershell-interactive-menu/HEAD/MultiMenuUsage.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibistroc/powershell-interactive-menu/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibistroc/powershell-interactive-menu/HEAD/_config.yml -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibistroc/powershell-interactive-menu/HEAD/logo.png -------------------------------------------------------------------------------- /sample-choosemenu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibistroc/powershell-interactive-menu/HEAD/sample-choosemenu.ps1 -------------------------------------------------------------------------------- /sample-multimenu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibistroc/powershell-interactive-menu/HEAD/sample-multimenu.ps1 --------------------------------------------------------------------------------