How to Execute Multiple Commands in One item in Nilesoft Shell? #652
Unanswered
sameer-707
asked this question in
Q&A
Replies: 1 comment
-
$app1 = '@sys.bin\notepad.exe'
$app2 = '@sys.bin\calc.exe'
item(title='Test' commands {
cmd = msg('Hi') wait='true',
cmd = app1,
cmd = app2, } ) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to execute two commands within a single item in Nilesoft Shell:
Run a Python script (taskbar_updater.py).

Launch UniGetUI (UniGetUI.exe).
this is what my program looks like
i cannot figure out how to add another program to it. something like this:-
Beta Was this translation helpful? Give feedback.
All reactions