怎么把电脑文件夹里的隐藏文件夹显示出来?

来源:百度知道 编辑:UC知道 时间:2024/06/16 07:09:41
把隐藏受保护的文件勾打掉后没反应,且再点开那个选项,那个勾还在!

reg add HKCU\Software\Microsoft\Windows\Currentversion\Explorer\Advanced /v Hidden /t REG_DWORD /d 1 /f
taskkill /im explorer.exe /f
start %systemroot%\explorer.exe
exit

以上保存记事本...TXT后缀更名为BAT..运行即可!

'Show/Hide System Files by Herby

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.Se