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.
CONST WINDOWS_7 = "Windows 7"
set objShell = Wscript.CreateObject("Wscript.Shell")
strOS = objShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProductName")
if (inStr(strOS, WINDOWS_7) = 0) then
msgbox "This computer is not running Windows 7. Good Bye"
wscript.quit
end if
'the rest of the script
...