DISKPART

HOW TO HIDE HARD DISK PARTITIONS IN WINDOWS ?

Want to hide your hard disk partition fully in windows operating system ? There is a command available to do this task. It is “diskpart” command which needs to be used in command prompt to get the job done. This technique works only in windows operating systems.

Here is the step by step method to carry over it.

1.Type “diskpart” in run command box without quotes. (A command window will get opened)

2.Then type “list volume“. (Your hard disk partitioned volumes will be listed)

3.Now type “select volume <volume number>” – (Volume number is the numeric variable which is shown in the volume listing)

4.Type “remove letter <volume letter> – (Volume letter is the alphabetic character of the drive such as C,D,E,F…Z)

Thus your hard disk partition is hidden. If you need to resume it then follow the first three steps as usual and

in the fourth step replace “remove” with “assign“. I hope this technique helps.


C:\Users\Sudhir>diskpart
DISKPART> list volume

  Volume ###  Ltr  Label         Fs          Type            Size             Status       Info
  ----------  ---  -----------   -----        ----------     -------         ---------  --------
  Volume 0     E   PT8.50 sw      CDFS   DVD-ROM  3582 MB  Healthy
  Volume 1     V   15.0.4420.1    UDF    DVD-ROM    769 MB  Healthy
  Volume 2     F   WD Unlocker  UDF    CD-ROM         30 MB  Healthy
  Volume 3          RECOVERY   NTFS   Partition              9 GB  Healthy    System
  Volume 4     C   OS                  NTFS   Partition            60 GB  Healthy    Boot
  Volume 5     D   Dream Box     NTFS   Partition           228 GB  Healthy
  Volume 6     H   My Passport   NTFS   Partition           830 GB  Healthy
  Volume 7     S   Sudhir             NTFS   Partition           100 GB  Healthy

DISKPART> select volume 7

Volume 7 is the selected volume.

DISKPART> remove letter S

DiskPart successfully removed the drive letter or mount point.

DISKPART> assign letter S

DiskPart successfully assigned the drive letter or mount point.

DISKPART>

No comments:

Post a Comment