1、网上搜索下载安装右键管家软件;
2、打开右键管家软件,点击“管理菜单-目录背景”,将“显示\隐藏系统文件+扩展名”菜单项后的【已启用】按钮,点击一下即可关闭。
WIN7 系统 右键计算机 点击管理 出现对话框:找不到文件解决的具体步骤如下:
需要准备的材料分别是:电脑、
以win7系统为例:
1、首先打开电脑,按下“win+r”打开运行。
2、然后在d出来的窗口中点击打开“regedit”,回车确定。
3、然后在d出来的窗口中点击打开编辑中的“查找”。
4、然后在d出来的窗口中输入“Manage”,点击“查找下一个”。
5、然后点击打开command文件夹。
6、然后点击打开类型下面的数据。
7、然后点击数值数据输入:mmc.exe %windir%\system32\compmgmt.msc,回车确定即可。
*** 作步骤如下:
1、点击开始,点击运行,输入notepad,点击确定;
2、打开记事本输入
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\DisplayFileExt]
@="显示/隐藏 文件扩展名"
[HKEY_CLASSES_ROOT\*\shell\DisplayFileExt\Command]
@="WScript.exe C:\\Windows\\SuperHidden.vbs"
[HKEY_CLASSES_ROOT\Directory\Background\shell\DisplayFileExt]
@="显示/隐藏 文件扩展名"
[HKEY_CLASSES_ROOT\Directory\Background\shell\DisplayFileExt\Command]
@="WScript.exe C:\\Windows\\SuperHidden.vbs"
[HKEY_CLASSES_ROOT\Folder\shell\DisplayFileExt]
@="显示/隐藏 文件扩展名"
[HKEY_CLASSES_ROOT\Folder\shell\DisplayFileExt\Command]
@="WScript.exe C:\\Windows\\SuperHidden.vbs"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\DisplayFileExt]
@="显示/隐藏 文件扩展名"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\DisplayFileExt\Command]
@="WScript.exe C:\\Windows\\SuperHidden.vbs"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\Background\shell\DisplayFileExt]
@="显示/隐藏 文件扩展名"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\Background\shell\DisplayFileExt\Command]
@="WScript.exe C:\\Windows\\SuperHidden.vbs"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DisplayFileExt]
@="显示/隐藏 文件扩展名"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DisplayFileExt\Command]
@="WScript.exe C:\\Windows\\SuperHidden.vbs"
3、按ctrl+s保存,输入文件名1.reg,保存类型选择所有文件,点击保存;
4、双击1.reg,点击确定添加到注册表,重启即可。
5、重复步骤1-4,建立SuperHidden.vbs文件保存到C盘windows文件夹,该文件内容如下:
'Show/Hide System Files
Dim WSHShell
Set WSHShell = WScript.CreateObject("WScript.Shell")
sTitle1 = "SSH=0"
sTitle2 = "SSH=1"
if WSHShell.RegRead("HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedShowSuperHidden") = 1 then
WSHShell.RegWrite "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedShowSuperHidden", "0", "REG_DWORD"
WSHShell.RegWrite "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedHidden", "2", "REG_DWORD"
WSHShell.RegWrite "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedHideFileExt", "1", "REG_DWORD"
WSHShell.RegWrite "HKCRCLSID{00000000-0000-0000-0000-000000000012}InstanceInitPropertyBagcommand", "显示系统文件+扩展名", "REG_SZ"
WSHShell.SendKeys "{F5}+{F10}e"
'WSHShell.Popup "Poof, they're gone!", 1, sTitle1, vbInformation
else
WSHShell.RegWrite "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedShowSuperHidden", "1", "REG_DWORD"
WSHShell.RegWrite "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedHidden", "1", "REG_DWORD"
WSHShell.RegWrite "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedHideFileExt", "0", "REG_DWORD"
WSHShell.RegWrite "HKCRCLSID{00000000-0000-0000-0000-000000000012}InstanceInitPropertyBagcommand", "隐藏系统文件+扩展名", "REG_SZ"
WSHShell.SendKeys "{F5}+{F10}e"
'WSHShell.Popup "Here they are!", 1, sTitle2, vbInformation
end if
Set WSHShell = Nothing
WScript.Quit(0)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)