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.
computerName = Wscript.Arguments(0)
'----- Connect to computer and query drives
Set WMIService = GetObject("winmgmts:\\" & computerName & "\root\CIMV2")
Set OSInfo = WMIService.ExecQuery("Select * from Win32_OperatingSystem",,48)
For Each OSItem in OSInfo
fullVer = OSItem.Version
majorVer = Left(OSItem.Version,3)
Next
Wscript.Echo "Major Version: " & majorVer & " Full Version: " & fullVer