-
When I run my bundle installer exe from the command prompt in silent mode, the exe returns almost immediately while the install/uninstall continues in the background. The command I am running is "MyBundle.exe /s". I am using the standard BA. How can I prevent the command from returning before the install/uninstall process has finished? |
Beta Was this translation helpful? Give feedback.
Answered by
robmen
Aug 7, 2024
Replies: 1 comment 1 reply
-
See Note: This is a Windows behavior. It has nothing to do with installation. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
rwilm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
start /wait MyBundle.exe /s
See
start /?
for all the options. There are many.Note: This is a Windows behavior. It has nothing to do with installation.