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 objShell = CreateObject("WScript.Shell")
'capture screen
objShell.sendKeys "{PRTSC}"
wscript.sleep 500
'open wordpad and "wait until ready"*
objShell.run "wordpad"
do
ready = objShell.AppActivate ("wordpad")
wscript.sleep 1000
loop until ready = true
wscript.sleep 500
'paste (send CTRL + v) and wait for a second
objShell.sendKeys "^v"
wscript.sleep 500
'open print dialog (send CTRL + p)
objShell.sendKeys "^p"
wscript.sleep 500
'print (send ALT + p)
objShell.sendKeys "%p"