Batch - minimize window while running a loop command (not start minimized)
问题 I'm wondering if there is a way to minimize a batch window after it runs a certain command. I already know start /min and tricks to START the window minimized but what about while it's running a loop or timeout? Let's say: echo Hello! timeout /t 100 :COMMAND TO MINIMIZE WINDOW WHILE TIMEOUT IS RUNNING Right now i'm calling an autoit script in the bat file to hide the window while the command is running with : WinSetState($application_name, "", @SW_HIDE) but i'm looking for a pure batch