怎么把电脑文件夹里的隐藏文件夹显示出来?
发布网友
发布时间:2022-03-04 21:02
我来回答
共5个回答
热心网友
时间:2022-03-04 22:31
打开<我的电脑>.点击窗口上方的<工具>选择<文件夹选项>选择<查看>在下面的框框中下拉一点可以看到一个<显示所有文件和文件夹>的选项.就可以了
热心网友
时间:2022-03-04 23:49
打开我的电脑,文件夹选项,选中
显示所有文件复选框,系统默认是不显示系统文件和隐藏文件
热心网友
时间:2022-03-05 01:24
点 工具--查看--文件夹选项--显示所有文件夹
热心网友
时间:2022-03-05 03:15
'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.SendKeys "{F5}+{F10}e"
'WSHShell.Popup "Poof, they're gone!", 1, sTitle1, vbInformation
else
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ShowSuperHidden", "1", "REG_DWORD"
WSHShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Hidden", "1", "REG_DWORD"
WSHShell.SendKeys "{F5}+{F10}e"
'WSHShell.Popup "Here they are!", 1, sTitle2, vbInformation
end if
Set WSHShell = Nothing
WScript.Quit(0)
以上文字打在记事本,保存为.vbs文件,运行之即可在隐藏和不隐藏之间转换。
热心网友
时间:2022-03-05 05:23
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..运行即可!