Cara Menyembunyikan Drive | How to Hide Windows Partition or Drive

Salah satu upaya mencegah 'tangan-tangan jahil' mengacak system komputer Anda yaitu dengan menyembunyikan drive sistem Windows. Bagaimana caranya? Gunakan Windows Registry Editor.

Catatan: Backup dahulu registry Anda karena kami tidak bertanggung jawab bila terjadi error (kesalahan).

Editing the registry to hide the Windows drive

Penjelasan Pertama

In order to hide a drive/partition inside Windows, you can always edit the Registry. Although is not as comfortable as the method presented above, you can do it in a matter of minutes.

Go to Start -> Run and type Regedit to start the registry editor. Now you need to follow a specific key which must be edited:

HKEY_CURRENT_USER / Software / Microsoft / Windows / CurrentVersion / Policies / Explorer

Right click in the right panel and select New->DWORD value. Name it NoDrives. You will immediately observe that this new DWORD value got its data something like this: 0x00000000. The 0x in the front of the value means the number is stored hexadecimal (base 16). There are four sets of double 0. This means that every set has its representations as follows (from right to left) :

- first set: drive letters from A to H
- second set: I to P
- third set: Q to X
- fourth set: Y to Z


The value number for the each drive is:

1 for A I Q Y, 2 for B J R Z, 4 for K C S, 8 for D L T, 16 for E M U, 32 for F N V, 64 for G O V and 80 for H P X.

Now focus on the information I provided you with above. If you want to hide partition E:, you should edit the NoDrives value as follows: E: corresponds to the first set of double 00 and the value for E is 16. Therefore, replace the first (rightmost) double 00 with 10 (the hexadecimal representation of the number 16).

sumber: softpedia.com


Penjelasan Kedua

In the Registry navigate to HKEY__USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer. Right-click on Explorer and choose New and DWORD value. In the pane on the right, rename the new value NoDrives and double-click on it to open the Edit DWORD Value box. Click the Decimal option to select it, instead of the Hexidecimal option.

Now for the complicated part. To hide a drive or drives, a number that corresponds to the drive(s) must be entered. Enter the value listed below for the drive. If multiple drives are to be hidden, add the numbers for those drives together. For example, hiding drives D and E requires a value of 24, because you are adding the value for D (8) to the value for E (16), which equals 24.

A: 1
B: 2
C: 4
D: 8
E: 16

F: 32
G: 64
H: 128
I: 256
J: 512

K: 1024
L: 2048
M: 4096
N: 8192
O: 16384

P: 32768
Q: 65536
R: 131072
S: 262144
T: 524288

U: 1048576
V: 2097152
W: 4194304
X: 8388608
Y: 16777216
Z: 33554432

All: 67108863

The boot disk, usually the C drive, tends to show up in Explorer even if you hide it in My Computer. To bring back hidden disks, just change the value of NoDrives to 0 or delete the value altogether.

sumber: mindconnection.com

No comments:

Post a Comment