右鍵菜單是我們平常使用電腦時經(jīng)常用到的操作,我們可以往右鍵菜單中添加個人需要的選項,下面小編就教大家怎么添加顯示隱藏文件到右鍵菜單中。
方法步驟
1、新建一個文檔,輸入如下代碼,并另存為:SuperHidden.reg
?。踓ode]REGEDIT4[HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\SuperHidden]@=“{00000000-0000-0000-0000-000000000012}”《/p》[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-000000000012}\InProcServer32]@=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,\68,64,6f,63,76,77,2e,64,6c,6c,00“ThreadingModel”=“Apartment”[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-000000000012}\Instance]“CLSID”=“{3f454f0e-42ae-4d7c-8ea3-328250d6e272}”[HKEY_CLASSES_ROOT\CLSID\{00000000-0000-0000-0000-000000000012}\Instance\InitPropertyBag]“method”=“ShellExecute”“Param1”=“SuperHidden.vbs”“command”=“顯示/隱藏系統(tǒng)文件+擴展名”“CLSID”=“{13709620-C279-11CE-A49E-444553540000}”[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]“ShowSuperHidden”=dword:00000000“Hidden”=dword:00000002[/code]
2、在新建一個文檔,輸入代碼后,另存為:SuperHidden.vbs
?。踓ode]‘Show/Hide System FilesDim WSHShellSet WSHShell = WScript.CreateObject(“WScript.Shell”)sTitle1 = “SSH=0”sTitle2 = “SSH=1”if WSHShell.RegRead(“HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ShowSuperHidden”) = 1 thenWSHShell.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.RegWrite “HKCR\CLSID\{00000000-0000-0000-0000-000000000012}\Instance\InitPropertyBag\command”, “顯示系統(tǒng)文件+擴展名”, “REG_SZ”WSHShell.SendKeys “{F5}+{F10}e”’WSHShell.Popup “Poof, they‘re gone!”, 1, sTitle1, vbInformationelseWSHShell.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.RegWrite “HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\HideFileExt”, “0”, “REG_DWORD”WSHShell.RegWrite “HKCR\CLSID\{00000000-0000-0000-0000-000000000012}\Instance\InitPropertyBag\command”, “隱藏系統(tǒng)文件+擴展名”, “REG_SZ”WSHShell.SendKeys “{F5}+{F10}e”’WSHShell.Popup “Here they are!”, 1, sTitle2, vbInformationend ifSet WSHShell = NothingWScript.Quit(0)[/code]
3、將SuperHidden.vbs拷貝到C盤windows目錄下即可,然后雙擊SuperHidden.reg(放到任意位置即可),修改注冊表,就可以了(如果安裝的殺毒軟件彈出阻止對話框時,請勾上總是允許,并將下方的以后總是允許的勾勾上就可以了);
4、這里是同時“顯示系統(tǒng)文件+擴展名”,但我們平時使用最多的應(yīng)該是“顯示/隱藏擴展名”,所以,將上面的代碼去掉幾行就可以了。如本人使用的,就只保留了“顯示/隱藏擴展名”的功能;
5、去掉的方法
在SuperHidden.reg中去掉:
?。踓ode]“Hidden”=dword:00000002
?。?code]
在SuperHidden.reg中去掉:
?。踓ode]WSHShell.RegWrite《/code》 《code》“HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Hidden”,《/code》 《code》“2”,《/code》 《code》“REG_DWORD” [/code]
和
?。踓ode]《code》WSHShell.RegWrite《/code》 《code》“HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Hidden”,《/code》 《code》“1”,《/code》 《code》“REG_DWORD” [/code]
6、這樣就可以了。
如果你想把顯示隱藏文件出現(xiàn)在右鍵菜單中,可以按照上述方法步驟進行操作,希望能對大家有幫助。