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.
filespec="\\a0b1c2\test\msgfile.txt" 'servername,share,msgfile
on error resume next
wscript.echo createobject("scripting.filesystemobject").opentextfile(filespec,1,false).readall
if err.number<>0 then wscript.echo "File not found." : err.clear
on error goto 0
filespec="\\a0b1c2\test\msgfile.txt" 'servername,share,msgfile
on error resume next
createobject("wscript.shell").run "notepad.exe " & filespec
if err.number<>0 then wscript.echo "File not found." : err.clear