2011/12/14에 해당되는 글 1건
2011/12/14 :: 특정 드라이브 숨기기 (2)
2011/12/14 23:06 :: Miscellaneous
각 드라이브를 숫자로 계산하여 더한 값을 16진수로 Registry에 대입.
A:2의 0승=1
B:2의1승=2
C:2의2승=4
D:2의3승=8
ex: E,F 드라이브 숨기기
2^4 = 16
2^5 = 32
16 + 32 = 48
48 in hex = 30
숨기기
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoDrives"=dword:00000030
"NoViewOnDrive"=dword:00000030
기본값(원상복구)
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoDrives"=-
"NoViewOnDrive"=-
