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.
SET FILEPATH=C:\....
SET FILENAME=file.txt
SET WORKFILENAME=file.wrk
RENAME %FILEPATH%%FILENAME% %WORKFILENAME%
REM Check if rename. If no file, then there was a sharing violation
IF NOT EXIST %FILEPATH%%WORKFILENAME% GOTO FILELOCKED
:FILELOCKED
ECHO FILE IS LOCKED