Hide Any Drive in My Computer (Without Any Software!!!)

By Unknown Sunday, July 7, 2013 0 comments

hide drives with command prompt

There are several ways of hiding drive from My Computer. We are discussing here the most easy and interesting trick of hiding drive from My Computer.
We will hide drive using Command Prompt. Lets see how it works:

Press the Win key, at search type “cmd” and press CTRL+SHIFT+ENTER to run the command prompt as administrator.
Once the command prompt interpreter is open, we’ll use the tool diskpart to remove and hide the drive. Here’s the summary of commands:
- diskpart
- list vol     (to display the list of drives available in the system)
- select volume [number]  => the command selects the drive that you want to hide
- remove letter=[drive letter]   => the command removes the drive letter and later hides the drive.
-----------------------------------------------------------------
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
C:\Windows\system32>diskpart
Microsoft DiskPart version 6.1.7601
Copyright (C) 1999-2008 Microsoft Corporation.
On computer: HPMINI-PC
DISKPART> list vol

 Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
--------  ---  ----------  -----  ---------  -------  ---------  ------
  Volume 0     H                     DVD-ROM         0 B   No Media
  Volume 1     D   Disk     NTFS   Partition     34 GB  Healthy
  Volume 2     E               NTFS   Partition     41 GB   Healthy
  Volume 3     C               NTFS   Partition     73 GB  Healthy   System

DISKPART> select volume 1
Volume 1 is the selected volume.
DISKPART> remove letter=d
DiskPart successfully removed the drive letter or mount point.


The trick should hide the disk drive as shown above.

TO UNHIDE THE DISK DRIVE
Repeat the steps above and use the following command to re-assign the driver letter and later, unhide the hard drive.
DISKPART> assign letter=d


Sharing is sexy

Related posts

0 comments for this post

Leave a reply