Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
@Echo off
date /t > date.txt
echo %1% > name.txt
for /F "tokens=1 delims=." %%i in (name.txt) do Set TEMPFILENAME=%%i
for /F "eol=; tokens=2,3,4 delims=/ " %%i in (date.txt) do Set TEMPFILENAME=%TEMPFILENAME%%%i-%%j-%%k
for /F "tokens=2 delims=." %%i in (name.txt) do Set TEMPFILENAME=%TEMPFILENAME%.%%i
rename %1 %TEMPFILENAME%
Del date.txt
Del name.txt
Set TEMPFILENAME=