Page 1 of 1

start "" changes the window title !!!!

Posted: 24 Oct 2021 08:13
by PiotrMP006
Hi

start "" changes the window title

ex

Code: Select all

start "" /b /low dir "D:\" /s

Image


Please help

Re: start "" changes the window title !!!!

Posted: 24 Oct 2021 08:26
by aGerman
Explicitly define cmd /c or cmd /k. (It will run in a new cmd.exe process anyway.)

Code: Select all

start "" /b /low cmd /c "dir "D:\" /s"
Steffen