diff options
author | Indrajith K L | 2022-12-03 17:00:20 +0530 |
---|---|---|
committer | Indrajith K L | 2022-12-03 17:00:20 +0530 |
commit | f5c4671bfbad96bf346bd7e9a21fc4317b4959df (patch) | |
tree | 2764fc62da58f2ba8da7ed341643fc359873142f /wmenu | |
download | cli-tools-windows-master.tar.gz cli-tools-windows-master.tar.bz2 cli-tools-windows-master.zip |
Diffstat (limited to 'wmenu')
-rw-r--r-- | wmenu/app.bat | 16 | ||||
-rw-r--r-- | wmenu/wmenu.exe | bin | 0 -> 38912 bytes |
2 files changed, 16 insertions, 0 deletions
diff --git a/wmenu/app.bat b/wmenu/app.bat new file mode 100644 index 0000000..86bb161 --- /dev/null +++ b/wmenu/app.bat @@ -0,0 +1,16 @@ +@echo off +start /B wmenu.exe -elements "notepad;explorer;paint;" | more > %temp%/apps.txt + +for /f "tokens=*" %%s in (%temp%\apps.txt) do ( + IF "%%s"=="notepad" ( + start notepad + ) ELSE IF "%%s"=="explorer" ( + start %%s + ) ELSE IF "%%s"=="paint" ( + start mspaint + ) ELSE ( + REM default case... + ) +) + +del "%temp%\apps.txt"
\ No newline at end of file diff --git a/wmenu/wmenu.exe b/wmenu/wmenu.exe Binary files differnew file mode 100644 index 0000000..6571414 --- /dev/null +++ b/wmenu/wmenu.exe |