How do I find where a network drive is mapped to in Windows 7?
-------------------------------------------------------------------------------
Become or hire the top 3% of the developers on Toptal https://topt.al/25cXVn
-------------------------------------------------------------------------------
Track title: CC F Haydns String Quartet No 53 in D
--
Chapters
00:00 Question
00:23 Accepted answer (Score 42)
00:48 Answer 2 (Score 64)
01:13 Answer 3 (Score 4)
01:41 Thank you
--
Full question
https://superuser.com/questions/384692/h...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows7 #networkdrive
#avk47
Become or hire the top 3% of the developers on Toptal https://topt.al/25cXVn
-------------------------------------------------------------------------------
Track title: CC F Haydns String Quartet No 53 in D
--
Chapters
00:00 Question
00:23 Accepted answer (Score 42)
00:48 Answer 2 (Score 64)
01:13 Answer 3 (Score 4)
01:41 Thank you
--
Full question
https://superuser.com/questions/384692/h...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows7 #networkdrive
#avk47
ANSWER 1
Score 64
In Windows Explorer, you can also switch the view to "Details" and right-click the header to add a column named "Network location":
Helps if the admin has disabled CMD for you (!)
ACCEPTED ANSWER
Score 41
Go to Start ยป Run, type in cmd
and press OK.
In the cmd
box, paste the following, then press Enter to run it.
wmic path Win32_LogicalDisk Where DriveType="4" get DeviceID, ProviderName
Doing the above but typing in NET USE
instead of copying the above also yields the same result.
ANSWER 3
Score 4
Sometimes the net use or the Win32_LogicalDisk will not show some of the mapped drives, powershell cmd:
gwmi win32_mappedlogicaldisk | select name, providername
will work then. The corresponding windows cmd is the following:
wmic path win32_mappedlogicaldisk get DeviceID, ProviderName