Batch file "hide the command prompt on startup"
killer1234
Posted messages
3
Registration date
Status
Membre
-
james -
james -
Hello,
I created a small batch file, but I don't want to see the CMD window.
My batch file opens a file and to do so, it opens the CMD, runs the command, and then closes the CMD. I don't want the CMD to be visible. How can I make it invisible or hidden on the screen?
Thank you
I created a small batch file, but I don't want to see the CMD window.
My batch file opens a file and to do so, it opens the CMD, runs the command, and then closes the CMD. I don't want the CMD to be visible. How can I make it invisible or hidden on the screen?
Thank you
Configuration: Windows XP Internet Explorer 8.0
3 réponses
Hello
Right-click on your batch file and then on Create shortcut, then click on the shortcut and go to properties and change the word Normal window to Minimized and there you go.. your CMD will be minimized in the taskbar.
karirovax ;)
Right-click on your batch file and then on Create shortcut, then click on the shortcut and go to properties and change the word Normal window to Minimized and there you go.. your CMD will be minimized in the taskbar.
karirovax ;)
Hello,
CMDOW is an application that you place in C:\Windows\System32 that will allow you to hide your CMD window.
In your batch file, you include:
Best regards.
CMDOW is an application that you place in C:\Windows\System32 that will allow you to hide your CMD window.
In your batch file, you include:
cmdow @ /hide
Best regards.
Hello too,
It's not cmd @/HID but cmdow @ /HID and that probably won't work either in its current state: cmdow is an external command, in French an utility that has to be installed under C:\Windows\System32.
I don't know if this utility works on Windows 10/11 either, there seems to be nothing preventing it if it's 32 bits.
https://ritchielawrence.github.io/cmdow/