隐藏的文件夹显示不出来了杂办啊??

来源:百度知道 编辑:UC知道 时间:2024/06/17 08:36:16
大家说的办法我都试了,可还是不行啊,杂办啊?

还不行,那就是中毒了,先杀毒,现在很多毒都有这功能

打开记事本,复制以下代码,保存时后缀名改为vbs,
然后双击他,就行了

'Show/Hide System Files by jk

Dim WSHShell
Set WSHShell = WScript.CreateObject("WScript.Shell")
sTitle1 = "SSH=0"
sTitle2 = "SSH=1"

if WSHShell.RegRead("HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ShowSuperHidden") = 1 then

WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ShowSuperHidden", "0", "REG_DWORD"
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Hidden", "2", "REG_DWORD"
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\HideFileExt", "1", "REG_DWORD"
WSHShell.R