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.
var Message, Title, tmp;
var vbInformation = 64;
var vbOKOnly = 0;
Message = " This is " + WScript.Application;
Message = Message + " v" + WScript.Version + "\n\n";
Message = Message + "(If the version shown above is NOT v5.5 ";
Message = Message + "or greater then please upgrade it.)";
Title = "Windows Script Host version checker";
var objAdr = WScript.CreateObject("WScript.Shell");
tmp = objAdr.Popup(Message, vbInformation + vbOKOnly, Title);