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.
strComputer = "."
objWMIService = GetObject("winmgmts:" ;
+ "{impersonationLevel=impersonate}!\\" + strComputer + "\root\cimv2")
colOSes = objWMIService.ExecQuery("Select * from Win32_OperatingSystem")
For Each objOS in colOSes
? "Operating System"
? " Caption: " + objOS.Caption &&Name
? " Version: " + objOS.Version &&Version + build
? " ServicePackMajorVersion: " + TRANSFORM(objOS.ServicePackMajorVersion) + "." ;
+ TRANSFORM(objOS.ServicePackMinorVersion)
endfor