windows - Find UNC path of a network drive? -
i need able determine path of network q drive @ work webmethods project. code have before in configuration file. placed single character leters inside of directories security reasons. not sure semi-colon for, think double slashes drive name comes play.
question: there easy way on windows 7 machine find out full path of unc specific drive location?
code:
allowedwritepaths=q:/a/b/c/d/e/ allowedreadpaths=c:/a/b;//itpr99999/c$/a/filename.txt alloweddeletepaths=
in windows, if have mapped network drives , don't know unc path them, can start command prompt (start | run | cmd.exe) , use net use
command list mapped drives , unc paths:
c:\>net use new connections remembered. status local remote network ------------------------------------------------------------------------------- ok q: \\server1\foo microsoft windows network ok x: \\server2\bar microsoft windows network command completed successfully.
note shows list of mapped , connected network file shares user context command run under. if run cmd.exe
under own user account, results shown network file shares yourself. if run cmd.exe
under user account, such local administrator, instead see network file shares user.
Comments
Post a Comment