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.
oNet = CreateObject("WScript.Network")
oNet.MapNetworkDrive("I","\\myserver\myFiles",.T.,"mike","password")
WshNetwork = CREATEOBJECT("WScript.Network")
oDrives = WshNetwork.EnumNetworkDrives
PUBLIC ARRAY mappeddrives[oDrives.count-1]
FOR i = 1 TO oDrives.COUNT -1
STORE oDrives.ITEM(i) TO mappeddrives[i]
NEXT