How to get the hidden drives in windows?
-
Hi All, Could any one help me how I can get all drives along with the hidden drives in windows. I am searching in msdn. I am not getting any good clue how to do it. Please help me if you know showing hidden drives using mfc / c++ to get the hidden drives info. If I got solution i will share the same. [I mean Hidden drive is, if I remove drive letter in device manager then the drive will be disappear for user. The actual drive & content will be existed in windows. If i go to Disk manager, I can again assign drive letter back and can see the drive.] Thanks in advance for help.
Nice talking to you. :-O
If you judge people, you have no time to love them. -- Mother Teresa -
Hi All, Could any one help me how I can get all drives along with the hidden drives in windows. I am searching in msdn. I am not getting any good clue how to do it. Please help me if you know showing hidden drives using mfc / c++ to get the hidden drives info. If I got solution i will share the same. [I mean Hidden drive is, if I remove drive letter in device manager then the drive will be disappear for user. The actual drive & content will be existed in windows. If i go to Disk manager, I can again assign drive letter back and can see the drive.] Thanks in advance for help.
Nice talking to you. :-O
If you judge people, you have no time to love them. -- Mother Teresa -
Any entries in the Registry after the removal from Device manager? Key - HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices
Selva
ya. When I remove drive letter then the registry is changing. I removed "MyDrive(F:)" its registry value is changed to some GUID. Thanks for clue. I am trying some windows MSDN sample. http://msdn.microsoft.com/en-us/library/cc542456%28v=VS.85%29.aspx[^] If you have any other solution share...
Nice talking to you. :-O
If you judge people, you have no time to love them. -- Mother Teresa -
Hi All, Could any one help me how I can get all drives along with the hidden drives in windows. I am searching in msdn. I am not getting any good clue how to do it. Please help me if you know showing hidden drives using mfc / c++ to get the hidden drives info. If I got solution i will share the same. [I mean Hidden drive is, if I remove drive letter in device manager then the drive will be disappear for user. The actual drive & content will be existed in windows. If i go to Disk manager, I can again assign drive letter back and can see the drive.] Thanks in advance for help.
Nice talking to you. :-O
If you judge people, you have no time to love them. -- Mother TeresaYou're talking about partitions, not drives. A partition is mounted on a mount point. Mount points are: 1) drive letter 2) empty directories on NTFS volumes. To manipulate (or list) these, you can use the command line utility
mountvol
, (Vista & up) or you can read this article: Reparse Points in Vista[^] -
You're talking about partitions, not drives. A partition is mounted on a mount point. Mount points are: 1) drive letter 2) empty directories on NTFS volumes. To manipulate (or list) these, you can use the command line utility
mountvol
, (Vista & up) or you can read this article: Reparse Points in Vista[^]