Guillaume Knispel
Guillaume Knispel
That behaviour is caused by the Windows Console. For other programs (e.g. `tasklist`), I noticed that a workaround is to launch `wcmd echo.` before (actually anything that launches cmd and...
Some technical details: cmd.exe changes the Console modes (probably as with SetConsoleMode) and cbwin doesn't touch it (except in an experimental branch). Unfortunately changing console modes back and forth seems...
This is probably due to lack of quoting & escaping like #25. I'm working on it.
Hello, Thanks for pointing at that. Actually one of the VM I'm running is on Insider Fast track, and I was already aware of that feature. Cbwin remains useful for...
Hello, Thank you for your report! Unfortunately, I have little control over which process the Windows Console directs the keyboard input to. I've attempted a few hacks both on the...
A default path (`%USERPROFILE%`) can be explicitly required by adding an extra param ':' before the command. For example you can try: ``` wrun : notepad ``` (or `wstart :...
Commit e7a048e documents the ':' param.
We are not supposed to write in those directories from Win32.
Only reading files from Win32 should cause no problem as long as they are not written in a concurrent WSL session. The result of writing files there from Win32 depends...
Note: an advantage in detecting GUI programs would also be that an automatic fallback to %USERPROFILE% as their cwd in case the caller is not called from DriveFs would likely...