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.
Dim objShell
On error resume next
'''''''''''''''''''''''''''''''''''''''''''
'Proxy settings for limited Internet access
'Courtesy of monsterjta @ tektips
'strValueProxyOverride = allowed sites
'''''''''''''''''''''''''''''''''''''''''''
locProxyEnable = "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyEnable"
binValueProxyEnable = 1
locProxyServer = "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyServer"
strValueProxyServer = "localhost:80"
locProxyOverride = "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyOverride"
strValueProxyOverride = "www.shoes.com;[URL unfurl="true"]https://;ftp://;<local>"[/URL]
'write
Set objShell = CreateObject("WScript.Shell")
objShell.RegWrite locProxyEnable, binValueProxyEnable, "REG_DWORD"
objShell.RegWrite locProxyServer, strValueProxyServer, "REG_SZ"
objShell.RegWrite locProxyOverride, strValueProxyOverride, "REG_SZ"