Recently I’ve noted a “Q:” drive letter on my computer which I can’t access, giving “Access denied”.
MOUNTVOL
gives the following.\\?\Volume{830815a7-9c08-11e3-afef-b0ee45f5b28c}\ Q:\
I can unmount it using
MOUNTVOL /D
, but it comes back on reboot.This volume has an entry under MountedDevices registry key, but I cannot determine where it comes from.
The drive letter does not appear inside
diskmgmt.msc
, either.How can I determine where this Volume is coming from?
Answer
Drive Q comes from Microsoft Application Virtualization (App-V). You may have a Click & Run Version of Office installaed which internally uses App-V and this is why you see the drive.
You can hide it very easily by importing this .reg file to the registry:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoDrives"=dword:00010000
"NoViewOnDrive"=dword:00010000
Attribution
Source : Link , Question Author : NothingsImpossible , Answer Author : magicandre1981