It doesn't work.
I get a blank line after the command. No error, Windows 11.
If the app was compiled with dynamic linking (using DLLs), the target PC might be missing required runtime libraries. (e.g., MSVCR140.dll for Visual Studio or libstdc++-6.dll for MinGW).
Check Dependencies (Run in Command Prompt):
dumpbindependents PuzzleFinder.exe
If you see:
libgcc_s_seh-1.dll, libstdc++-6.dll, libwinpthread-1.dll → Static linking failed.
MSVCR140.dll, VCRUNTIME140.dll → Visual Studio runtime is dynamically linked.
For MinGW (g++) , recompile with static linking -static to embed all dependencies.
(Without any nasty viruses, if possible.

)
I have a Makefile which does it automatically so there is no confusion. I personally hate sharing exe files.