Dos - Title Command
Articles Related
How to
Start a cmd windows with a title
start "myTitle" cmd
Set the title with the content of a file
set BASE_PATH=%~dp0
for /f "usebackq delims=" %%L in ("%BASE_PATH%title.txt") do title %%L
start "myTitle" cmd
set BASE_PATH=%~dp0
for /f "usebackq delims=" %%L in ("%BASE_PATH%title.txt") do title %%L