Como escondo duas unidades de reserva do sistema no registro?

4

Em referência a essa resposta Como ocultar a partição System Reserved? :

In some cases - as seen in this question - removing the drive letter for the System Reserved partition can cause other partitions on that drive to not show up in Windows Explorer. To avoid that, a registry tweak must be used to maintain the drive letter but hide the drive.

Open the Registry Editor (type regedit in the Run dialog) and navigate to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer, creating the Explorer key if necessary. Create a new DWORD value called NoDrives. The data for that value should be a bitmask with set bits indicating a hidden drive. To hide only the A drive, set the data to 1. To hide the B drive, set the data to 2 in decimal (10 in binary) - the second bit corresponds to the B drive. Similarly, 9 would hide the D and A drives (it's 1001 in binary).

A logoff/logon cycle may be required for this change to take effect.

Eu tenho dois drives e dois windows 7 boot ups e, portanto, tenho duas unidades de reserva do sistema que gostaria de ocultar. Existe uma maneira de adicionar um segundo valor DWORD para a segunda unidade? as duas unidades em questão são D e G.

    
por Tom Badaj 28.05.2016 / 23:05

1 resposta

2

Eu gostaria de esconder duas unidades, D e G.

Você não precisa de um 2º DWORD , pois a forma como o NoDrives funciona é uma máscara de bits, onde os bits definidos indicam uma unidade oculta.

Portanto, no seu caso, o valor que você precisa é de 72 .

72 decimal é 01001000 binário:

  • O quarto bit está definido ( D é drive "letter" 4)

  • O sétimo bit está definido ( G é drive "letra" 7)

Existe uma calculadora em NoDrives para facilitar a vida:

Copytheresultintotheregistrytohidethedriveletter(s)

UserKey:

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]

SystemKey:

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]

ValueName:NoDrives

DataType:DWORD

Afterchangingtheregistry,logofforrebootsothatittakeseffect.

Drivemappingshiddenwithanodrivesregistrysettingarestillavailable,justtypethedriveletterintotheexploreraddressbar.

Fonte NoDrives

Leitura Adicional

por 28.05.2016 / 23:26

Tags