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 oSystem = GetObject("winMgmts:\\" & sCurrentPC)
Set cComputers = oSystem.ExecQuery("SELECT * FROM Win32_OperatingSystem")
For Each rComputer In cComputers
sOSType = rComputer.Caption
Next
If sOSType = "Microsoft Windows XP Professional" Then
MsgBox "This is a Windows XP Professional operating system."
Else
MsgBox "This is not a Windows XP Professional operating system."
End If
; Copy to notepad, paste and save as InstallPatch.kix
IF @PRODUCTTYPE = "Windows XP Professional" Then
; Trigger installer
Run "Install.exe"
EndIf