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.
'==========================================================================
'
' NAME: DumpsterAlwaysOn.vbs
'
' AUTHOR: Mark D. MacLachlan , The Spider's Parlor
' URL: [URL unfurl="true"]http://www.TheSpidersParlor.com[/URL]
' COPYRIGHT (c) 2005 All Rights Reserved
' DATE : 10/12/2005
'
' COMMENT:
'
'==========================================================================
on error resume next
Dim path
Set WSHShell = Wscript.CreateObject("WScript.Shell")
path = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Exchange\Client\Options\"
WSHShell.RegWrite path & "DumpsterAlwaysOn","1","REG_DWORD"
If err then
msgbox "Error Encountered"
else
msgbox "Dumpters Allways On Setup Sucessful"
End if