Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Set wn = WScript.CreateObject("WScript.Network")
Set laufwerke = wn.EnumNetworkDrives
For i = 0 to laufwerke.count - 1 step 2
liste = liste & "Laufwerk: " & laufwerke.item(i)
liste = liste & " Quelle: " & laufwerke.item(i+1) & vbcr
Next
msgbox(liste)
The NetShareEnum RAP function for enumerating shares
has a 12 (or is it 13?) character limit. You need DCE/RPC to enumerate
longer/Unicode share names.
Incedentially jCIFS also suffers from this limitation.