Table of Contents

How to

Start a cmd windows with a title

start "myTitle" cmd

See Dos - Start Command

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