start "" changes the window title !!!!

Microsoft Windows
Post Reply
PiotrMP006
Posts: 19
Joined: 2021-Sep-01, 10:57 am

start "" changes the window title !!!!

Post by PiotrMP006 »

Hi

start "" changes the window title

ex

Code: Select all

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

Image

Please help
User avatar
Simon Sheppard
Posts: 190
Joined: 2021-Jul-10, 7:46 pm
Contact:

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

Post by Simon Sheppard »

just fill in the title that you want

Code: Select all

start "Command Prompt" dir "D:\" /s
start %comspec% dir "D:\" /s
start "anything" dir "D:\" /s
Post Reply