Lists local drives mapped to a UNC.
wntGetDrive(net-resource)
(s) net-resource: specifies a UNC, in the form "\\SERVER\SHARE". It is not case-sensitive, but must otherwise EXACTLY match the UNC name to which the drive(s) are mapped (eg, must not have a trailing backslash).
(s) Returns a tab-delimited list of drives (eg, "H: W:").
; Load Appropriate Extender AddExtender('wwwnt34i.dll',0,'wwwnt64i.dll')
drvltr=wntGetDrive("\\Server\Share") AskItemlist("Server is mapped to",drvltr,@TAB,@UNSORTED,@SINGLE) Exit