You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's understood that, in the absence of the -c parameter, uncap.exe runs in the background, i.e. has no visible output. I can run it via "WIN-R uncap.exe" and it behaves as expected.
When invoked from the command line, however (i.e. an instance of CMD.exe already running) uncap.exe will not only run and close itself but the window from which it was called as well, meaning I have to rerun CMD.exe to continue working on the command line. Is that expected behavior?
The text was updated successfully, but these errors were encountered:
Yes. As it is implmented now it simply hides the current terminal. A better approach would be to detach from the terminal which would leave your window intact - see #29
Because of this the following does not help either:
c:\>cmd /c uncap
But a workaround is to use "start":
c:\>start uncap
This will start a new console which is then hidden. Your current console is then left open as normally expected.
It's understood that, in the absence of the -c parameter, uncap.exe runs in the background, i.e. has no visible output. I can run it via "WIN-R uncap.exe" and it behaves as expected.
When invoked from the command line, however (i.e. an instance of CMD.exe already running) uncap.exe will not only run and close itself but the window from which it was called as well, meaning I have to rerun CMD.exe to continue working on the command line. Is that expected behavior?
The text was updated successfully, but these errors were encountered: