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
set src=C:\sourcefolder
set dest=C:\destinationfolder
setLocal EnableDelayedExpansion
for /f %%a in ('dir "%src%" /b /o:-d /t:w') do (
set var=%%a
)
mv "%src%\!var!" "%dest%"