Command line information not working on Windows

Hi there!

I am trying to get the version number of audacity.exe using the cmd on Windows, but nothing returns.

Using the exe provided on the zip package:

C:\Users\username\Downloads\audacity-2.3.2>audacity.exe /v

C:\Users\username\Downloads\audacity-2.3.2>audacity.exe -v

C:\Users\username\Downloads\audacity-2.3.2>audacity.exe --version

returns nothing.

Thanks for your attention.

The short answer is that this is not supported on Windows.

The longer answer:
If an executable is marked as a “Windows” (GUI) program rather than a “Console” program, then the process is created without any STDOUT or STDERR handles - so printf output is discarded. Furthermore when the “Windows” marked program is started from a command line the console does not block and wait for return – it just spins off a separate process and carries on.
(more information here: https://devblogs.microsoft.com/oldnewthing/?p=19643)

A workaround if you really need this, is to use “Git Bash” rather than the Windows Command Prompt.
Git Bash is currently included in Git for Windows: https://gitforwindows.org/

Thanks Steve!

I believe this is not good. If the user just want to know the version of Audacity, it should be printed on the cmd and do not require that the user wait for the GUI to fully load and make some clicks to get this information. Maybe this is even worse if the user is using some scripting.

But thanks again, I just think this is just something that should be enabled on Windows.

Have you tried [u]SoX[/u]? It’s the only command line audio editor that I know of.

I’ve just tested Firefox on Windows 10 and Ubuntu Linux.
Linux:

$ firefox -v
Mozilla Firefox 67.0.2

Windows:

C:\Program Files\Mozilla Firefox>firefox.exe -v

C:\Program Files\Mozilla Firefox>

Looks like complaints should be directed to Microsoft.

:laughing: I understand. Thanks!