This repository was archived by the owner on Jul 24, 2025. It is now read-only.
Replies: 1 comment 2 replies
-
@BartoszCichecki would |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Currently the description is
Execute script or program in background, without creating a new window.
I must declare that this description is not wrong, but may cause misunderstanding for those who has absolute no idea on WINAPI. By checking
Run Silently
check-box, new process will be launched with aCREATE_NO_WINDOW
creation flag, AND this flag is ignored if the application is not a console application (seems like it is not described in the ProcessStartInfo.CreateNoWindow doc, but I think they are the same). That means, technically,Run Silently
check-box only works when the user starts a console program; if the program has a GUI, checking or unchecking the check-box is actually the same. A GUI program will not run in background, even ifRun Silently
is checked.I tried to write a better description (simple, concise, accurate and easy-understandable) but I'm not able to find one. For now I would just use this description, but I'm wondering if we can find a better one.
Beta Was this translation helpful? Give feedback.
All reactions