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.
REM batch file concept
REM to start IE & dump autocomplete afterward
@echo off
:: start IE with the wait switch
start /w iexplorer.exe
:: remove the autocomplete registry key
REGEDIT.EXE delete-autocomplete.reg
:: merge the clean, blank autocomplete registry key
REGEDIT.EXE cleard-autocomplete.reg
exit