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.
sHost="YourServerName" 'the host of the share
set fsvc=getobject("WinNT://"& sHost & "/LanmanServer")
set cResources=fsvc.Resources
for each oResource in cResources
with oResource
wscript.echo .path & vbTab & .lockcount & vbcrlf & .user
end with
next
set cResources=nothing
set fsvc=nothing