start "" changes the window title !!!!

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
PiotrMP006
Posts: 29
Joined: 08 Sep 2017 06:10

start "" changes the window title !!!!

#1 Post by PiotrMP006 » 24 Oct 2021 08:13

Hi

start "" changes the window title

ex

Code: Select all

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

Image


Please help
Last edited by PiotrMP006 on 24 Oct 2021 08:48, edited 1 time in total.

aGerman
Expert
Posts: 4654
Joined: 22 Jan 2010 18:01
Location: Germany

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

#2 Post by aGerman » 24 Oct 2021 08:26

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

Post Reply