15
C:\Windows\system32>net use  
OK           X:        \\192.168.8.109\Public    Microsoft Windows Network  
OK           Y:        \\192.168.8.109\DATA      Microsoft Windows Network  
OK           Z:        \\192.168.8.109\MEDIA     Microsoft Windows Network 

Command-line instructions like dir x: work as expected.

In Windows Explorer, why do these 3 mapped drives not show up? Suggestions and diagnostic questions are appreciated.

Ben N
  • 42,308
gatorback
  • 1,091

2 Answers2

30

Mapped network drives created by an elevated process will not be visible to an unelevated process and vice versa. This has been the case since Windows Vista. Since Explorer doesn't run elevated (unless you fully disable UAC), it doesn't see the drives you made with your administrative command prompt.

To disable that isolation, you can modify the Registry, as instructed by this TechNet article. Navigate to this key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

Create a DWORD entry named EnableLinkedConnections with a value of 1. Reboot the computer. Network drives mapped by the same user, even under different security contexts, will always appear to programs running as that user.

Ben N
  • 42,308
2

I had this problem too. When I ran the following using a CMD console with admin privileges, the drive wasnt showing up in File Explorer.

net use y: \\192.168.20.1\disk1_1 /p:yes

I then tried doing the same using a normal CMD console, and it is now showing up in File Explorer.

Chai Ang
  • 161