當(dāng)前位置:愛純凈 > 系統(tǒng)教程 > Win764位純凈版右鍵菜單怎么添加顯示/隱藏文件

Win764位純凈版右鍵菜單怎么添加顯示/隱藏文件

Win764位純凈版右鍵菜單怎么添加顯示/隱藏文件

更新時間:2019-04-27 文章編輯:愛純凈 信息來源:網(wǎng)絡(luò) 閱讀次數(shù):

  我們在操作隱藏系統(tǒng)文件夾是都是使用Win764位純凈版系統(tǒng)都是自帶“隱藏文件和文件夾”和“隱藏已知文件類型的擴展名”,如果需要經(jīng)常設(shè)置起來需要點很多次,很是麻煩。今天小編就來很大家分享個簡單的方法,只要將這些功能添加到鼠標(biāo)右鍵,這樣就能輕松搞定,免去多次點擊。

Win764位純凈版右鍵菜單怎么添加顯示隱藏文件

  一、新建一個文檔,輸入如下代碼,并另存為:SuperHidden.reg

  1. 01[code]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]
復(fù)制代碼
[code]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]

  二、在新建一個文檔,輸入代碼后,另存為:SuperHidden.vbs

  1. 01[code]'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]
復(fù)制代碼
[code]'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]

  三、將SuperHidden.vbs拷貝到C盤windows目錄下即可,然后雙擊SuperHidden.reg(放到任意位置即可),修改注冊表,就可以了(如果安裝的殺毒軟件彈出阻止對話框時,請勾上總是允許,并將下方的以后總是允許的勾勾上就可以了)。

  四、這里是同時“顯示系統(tǒng)文件+擴展名”,但我們平時使用最多的應(yīng)該是“顯示/隱藏擴展名”,所以,將上面的代碼去掉幾行就可以了。如本人使用的,就只保留了“顯示/隱藏擴展名”的功能。

  使用的方法。在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]

  以上就是Win764位純凈版右鍵菜單怎么添加顯示/隱藏文件擴展的操作方法,用戶們也可以把“顯示/隱藏擴展名”和“隱藏/顯示系統(tǒng)文件”的功能分成兩個進行設(shè)置方便查閱與修改,或者到網(wǎng)上下載軟件進行設(shè)置,這樣就不用手動修改注冊表,以免出現(xiàn)問題。

留言與評論(共有 條評論)
驗證碼:

本類最新列表

最熱系統(tǒng)下載