This might not be the perfect solution you are looking for, but if you want a 'quick fix', then this could help you out.
if you simply change this code
:continue1
cls
Title Downloading...
FOR /F "usebackq tokens=*" %%A IN (`wget -S --spider --no-check-certificate %URL% 2^>^&1 ^| FINDSTR "Content-Length: "`) DO (
SET SIZE=%%A
)
into
:continue1
cls
FOR /F "usebackq tokens=*" %%A IN (`wget -S --spider --no-check-certificate %URL% 2^>^&1 ^| FINDSTR "Content-Length: "`) DO (
SET SIZE=%%A
)
Title Downloading...
Then the title will display Downloading
.
The downside to this quick fix is that the wget title will be displayed for a fraction of a second.
Hopefully this helps you out.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…