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.
On Error Resume Next
Set WSHShell = CreateObject("Wscript.Shell")
Path = "HKLM\Software\Microsoft\Microsoft\Windows\CurrentVersion\Setup\Oc Manager\Subcomponents\fp_extensions"
Installed = WSHShell.RegRead(Path)
If Installed = 1 Then
WScript.Echo "FrontPage Extensions are installed"
Else
WScript.Echo "FrontPage Extensions are NOT installed"
End If