j9murphy Posted August 6, 2024 Posted August 6, 2024 I would like to start the pimax client in a batch file (which works) however I'm getting a lot of output from the pimax client in the cmd window which I would like to send to nul or disable. I've tried the following to no avail, has anyone else tried to eliminate the output from displaying in the cmd shell? What was your solution? is there a command line argument to disable the output? This does start the client, but does not eliminate the output in the cmd window.... START "" /d "C:\Program Files\Pimax\PimaxClient\pimaxui" PimaxClient.exe 1>nul 2>nul
Calvin.Pimax Posted August 8, 2024 Posted August 8, 2024 You may try to avoid using the START command and instead use the following: "C:\Program Files\Pimax\PimaxClient\pimaxui\PimaxClient.exe" 1>nul 2>nul
Recommended Posts