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.
WshShell = CreateObject("WScript.Shell")
? WshShell.SpecialFolders(10)
*!* 0: All Users \ Desktop
*!* 1: All Users \ Start Menu
*!* 2: All Users \ Start Menu \ Programs
*!* 3: All Users \ Start Menu \ Programs \ Startup
*!* 4: Current User \ Desktop
*!* 5: Current User \ Application Data
*!* 6: Current User \ Printhood
*!* 7: Current User \ Templates
*!* 8: Fonts
*!* 9: Current User \ Nethood
*!* 10: Current User \ Desktop
*!* 11: Current User \ Start Menu
*!* 12: Current User \ SendTo
*!* 13: Current User \ Recent
*!* 14: Current User \ Start Menu \ Programs \ Startup
*!* 15: Current User \ Favorites
*!* 16: Current User \ My Documents
*!* 17: Current User \ Start Menu \ Programs
WshShell = CreateObject("WScript.Shell")
FOR lnii = 0 TO 17
? TRANSFORM(lnii,"99")+": "+WshShell.SpecialFolders(lnii)
ENDFOR