Discussion forum for all Windows batch related topics.
Moderator: DosItHelp
-
PiotrMP006
- Posts: 31
- Joined: 08 Sep 2017 06:10
#1
Post
by PiotrMP006 » 24 Oct 2021 08:13
Hi
start "" changes the window title
ex
Please help
Last edited by
PiotrMP006 on 24 Oct 2021 08:48, edited 1 time in total.
-
aGerman
- Expert
- Posts: 4678
- Joined: 22 Jan 2010 18:01
- Location: Germany
#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