Lists open files on a server.
wntFilesOpen(server-name)
(s) server-name: "server-name" is the name of a remote server on which the function will execute, or a blank string ("") to indicate the local computer.
(s) Returns a tab-delimited list of file names.
Note: This function can only be performed by members of the Administrators or Server Operators local group.
; Load Appropriate Extender AddExtender('wwwnt34i.dll',0,'wwwnt64i.dll')
files=wntFilesOpen("") AskItemlist("List of open files on a server.",files,@TAB,@SORTED,@SINGLE) Exit