win7 64位右键添加显示隐藏系统文件和文件扩展名
一、新建一个文档,输入如下代码并另存为:SuperHidden.reg
01
REGEDIT4
02
[HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\SuperHidden]
03
@="{00000000-0000-0000-0000-000000000012}"
04
[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-000000000012}\InProcServer32]
05
@=hex(2):25,53,79,73,74,65,6d,52,6f,6f,74,25,5c,73,79,73,74,65,6d,33,32,5c,73,\
06
68,64,6f,63,76,77,2e,64,6c,6c,00
07
"ThreadingModel"="Apartment"
08
[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-000000000012}\Instance]
09
"CLSID"="{3f454f0e-42ae-4d7c-8ea3-328250d6e272}"
10
[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-000000000012}\Instance\InitPropertyBag]
11
"method"="ShellExecute"
12
"Param1"="SuperHidden.vbs"
13
"command"="显示/隐藏系统文件+扩展名"
14
"CLSID"="{13709620-C279-11CE-A49E-444553540000}"
15
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
16
"ShowSuperHidden"=dword:00000000
17
"Hidden"=dword:00000002
二、在新建一个文档,输入代码后另存为:SuperHidden.vbs
01
'Show/Hide System Files
02
Dim WSHShell
03
Set WSHShell = WScript.CreateObject("WScript.Shell")
04
sTitle1 = "SSH=0"
05
sTitle2 = "SSH=1"
06
if WSHShell.RegRead("HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ShowSuperHidden") = 1 then
07
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ShowSuperHidden", "0", "REG_DWORD"
08
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Hidden", "2", "REG_DWORD"
09
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\HideFileExt", "1", "REG_DWORD"
10
WSHShell.RegWrite "HKCR\CLSID\{00000000-0000-0000-0000-000000000012}\Instance\InitPropertyBag\command", "显示系统文件+扩展名", "REG_SZ"
11
WSHShell.SendKeys "{F5}+{F10}e"
12
'WSHShell.Popup "Poof, they're gone!", 1, sTitle1, vbInformation
13
else
14
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ShowSuperHidden", "1", "REG_DWORD"
15
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Hidden", "1", "REG_DWORD"
16
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\HideFileExt", "0", "REG_DWORD"
17
WSHShell.RegWrite "HKCR\CLSID\{00000000-0000-0000-0000-000000000012}\Instance\InitPropertyBag\command", "隐藏系统文件+扩展名", "REG_SZ"
18
WSHShell.SendKeys "{F5}+{F10}e"
19
'WSHShell.Popup "Here they are!", 1, sTitle2, vbInformation
20
end if
21
Set WSHShell = Nothing
22
WScript.Quit(0)
三、将SuperHidden.vbs拷贝到C盘windows目录下即可,然后双击SuperHidden.reg修改注册表,最后重启一下电脑就可以了(如果安装的杀毒软件弹出阻止对话框时,请勾上总是允许,并将下方的以后总是允许的勾勾上就可以了)。
一、新建一个文档,输入如下代码并另存为:SuperHidden.reg
01
REGEDIT4
02
[HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\SuperHidden]
03
@="{00000000-0000-0000-0000-000000000012}"
04
[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-000000000012}\InProcServer32]
05
@=hex(2):25,53,79,73,74,65,6d,52,6f,6f,74,25,5c,73,79,73,74,65,6d,33,32,5c,73,\
06
68,64,6f,63,76,77,2e,64,6c,6c,00
07
"ThreadingModel"="Apartment"
08
[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-000000000012}\Instance]
09
"CLSID"="{3f454f0e-42ae-4d7c-8ea3-328250d6e272}"
10
[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-000000000012}\Instance\InitPropertyBag]
11
"method"="ShellExecute"
12
"Param1"="SuperHidden.vbs"
13
"command"="显示/隐藏系统文件+扩展名"
14
"CLSID"="{13709620-C279-11CE-A49E-444553540000}"
15
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
16
"ShowSuperHidden"=dword:00000000
17
"Hidden"=dword:00000002
二、在新建一个文档,输入代码后另存为:SuperHidden.vbs
01
'Show/Hide System Files
02
Dim WSHShell
03
Set WSHShell = WScript.CreateObject("WScript.Shell")
04
sTitle1 = "SSH=0"
05
sTitle2 = "SSH=1"
06
if WSHShell.RegRead("HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ShowSuperHidden") = 1 then
07
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ShowSuperHidden", "0", "REG_DWORD"
08
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Hidden", "2", "REG_DWORD"
09
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\HideFileExt", "1", "REG_DWORD"
10
WSHShell.RegWrite "HKCR\CLSID\{00000000-0000-0000-0000-000000000012}\Instance\InitPropertyBag\command", "显示系统文件+扩展名", "REG_SZ"
11
WSHShell.SendKeys "{F5}+{F10}e"
12
'WSHShell.Popup "Poof, they're gone!", 1, sTitle1, vbInformation
13
else
14
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ShowSuperHidden", "1", "REG_DWORD"
15
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Hidden", "1", "REG_DWORD"
16
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\HideFileExt", "0", "REG_DWORD"
17
WSHShell.RegWrite "HKCR\CLSID\{00000000-0000-0000-0000-000000000012}\Instance\InitPropertyBag\command", "隐藏系统文件+扩展名", "REG_SZ"
18
WSHShell.SendKeys "{F5}+{F10}e"
19
'WSHShell.Popup "Here they are!", 1, sTitle2, vbInformation
20
end if
21
Set WSHShell = Nothing
22
WScript.Quit(0)
三、将SuperHidden.vbs拷贝到C盘windows目录下即可,然后双击SuperHidden.reg修改注册表,最后重启一下电脑就可以了(如果安装的杀毒软件弹出阻止对话框时,请勾上总是允许,并将下方的以后总是允许的勾勾上就可以了)。
华山资源网 Design By www.eoogi.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
华山资源网 Design By www.eoogi.com
暂无评论...
更新日志
2024年11月18日
2024年11月18日
- 群星《奔赴!万人现场 第4期》[320K/MP3][80.75MB]
- 林琳《独角戏HQ》WAV
- FIM-《Super-Sound-3》声霸3[WAV+CUE]
- 喇叭花-绝版天碟《我的碟“MyDisc”》[正版原抓WAV+CUE]
- 陈慧琳.1999-真感觉【正东】【WAV+CUE】
- 徐玮.1986-走自己的路(喜玛拉雅复刻版)【同心圆】【WAV+CUE】
- 林海峰.2003-我撑你【EMI百代】【WAV+CUE】
- 群星《奔赴!万人现场 第4期》[FLAC/分轨][454.89MB]
- 腾讯音乐人《未来立体声·Stereo Future VOL.12》[320K/MP3][62.37MB]
- 腾讯音乐人《未来立体声·Stereo Future VOL.12》[FLAC/分轨][176.46MB]
- 房东的猫2020-这是你想要的生活吗[青柴文化][WAV+CUE]
- 黄乙玲1990-春风恋情[日本东芝版][WAV+CUE]
- 黑鸭子2006-红色经典特别版[首版][WAV+CUE]
- 赵乃吉《你不是风平浪静的海》[320K/MP3][84.88MB]
- 赵乃吉《你不是风平浪静的海》[FLAC/分轨][176.46MB]