久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

Win7 64位右鍵添加顯示/隱藏系統文件或文件擴展操作方法

瀏覽:104日期:2022-09-24 08:46:45

很多用戶在隱藏系統文件夾是都是使用Windows系統都是自帶“隱藏文件和文件夾”和“隱藏已知文件類型的擴展名”,但這樣設置起來需要點很多次,很是麻煩。下面小編就來很大家分享個簡單的方法,只要將這些功能添加到鼠標右鍵,這樣就能輕松搞定,免去多次點擊。

Win7 64位右鍵添加顯示/隱藏系統文件或文件擴展操作方法

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

01[code]REGEDIT4[HKEY_CLASSES_ROOTDirectoryBackgroundshellexContextMenuHandlersSuperHidden]@="{00000000-0000-0000-0000-000000000012}"</p>[HKEY_CLASSES_ROOTCLSID{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_ROOTCLSID{00000000-0000-0000-0000-000000000012}Instance]"CLSID"="{3f454f0e-42ae-4d7c-8ea3-328250d6e272}"[HKEY_CLASSES_ROOTCLSID{00000000-0000-0000-0000-000000000012}InstanceInitPropertyBag]"method"="ShellExecute""Param1"="SuperHidden.vbs""command"="顯示/隱藏系統文件+擴展名""CLSID"="{13709620-C279-11CE-A49E-444553540000}"[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]"ShowSuperHidden"=dword:00000000"Hidden"=dword:00000002[/code]復制代碼[code]REGEDIT4[HKEY_CLASSES_ROOTDirectoryBackgroundshellexContextMenuHandlersSuperHidden]@="{00000000-0000-0000-0000-000000000012}"</p>[HKEY_CLASSES_ROOTCLSID{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_ROOTCLSID{00000000-0000-0000-0000-000000000012}Instance]"CLSID"="{3f454f0e-42ae-4d7c-8ea3-328250d6e272}"[HKEY_CLASSES_ROOTCLSID{00000000-0000-0000-0000-000000000012}InstanceInitPropertyBag]"method"="ShellExecute""Param1"="SuperHidden.vbs""command"="顯示/隱藏系統文件+擴展名""CLSID"="{13709620-C279-11CE-A49E-444553540000}"[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]"ShowSuperHidden"=dword:00000000"Hidden"=dword:00000002[/code]

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

01[code]'Show/Hide System FilesDim WSHShellSet WSHShell = WScript.CreateObject("WScript.Shell")sTitle1 = "SSH=0"sTitle2 = "SSH=1"if WSHShell.RegRead("HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedShowSuperHidden") = 1 thenWSHShell.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, vbInformationelseWSHShell.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, vbInformationend ifSet WSHShell = NothingWScript.Quit(0)[/code]復制代碼[code]'Show/Hide System FilesDim WSHShellSet WSHShell = WScript.CreateObject("WScript.Shell")sTitle1 = "SSH=0"sTitle2 = "SSH=1"if WSHShell.RegRead("HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedShowSuperHidden") = 1 thenWSHShell.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, vbInformationelseWSHShell.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, vbInformationend ifSet WSHShell = NothingWScript.Quit(0)[/code]

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

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

使用的方法。在SuperHidden.reg中去掉:

[code]“Hidden”=dword:00000002

[/code]

在SuperHidden.reg中去掉:

[code]WSHShell.RegWrite《/code》《code》“HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedHidden”,《/code》《code》“2”,《/code》《code》“REG_DWORD” [/code]

[code]《code》WSHShell.RegWrite《/code》《code》“HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedHidden”,《/code》《code》“1”,《/code》《code》“REG_DWORD” [/code]

以上就是Win7 64位右鍵添加顯示/隱藏系統文件或文件擴展操作方法,用戶們也可以把“顯示/隱藏擴展名”和“隱藏/顯示系統文件”的功能分成兩個進行設置方便查閱與修改,或者到網上下載軟件進行設置,這樣就不用手動修改注冊表,以免出現問題。

標簽: Windows系統 win7
相關文章:
主站蜘蛛池模板: 卓尼县| 永昌县| 罗甸县| 咸丰县| 曲阜市| 广东省| 靖边县| 和田市| 秭归县| 神池县| 永和县| 稷山县| 济宁市| 云阳县| 沁源县| 大宁县| 二连浩特市| 鞍山市| 古田县| 京山县| 乌兰县| 微山县| 镇赉县| 宣化县| 图木舒克市| 莱阳市| 遵义县| 宣化县| 绥芬河市| 牟定县| 虞城县| 兴安盟| 宜川县| 伊宁县| 静安区| 河曲县| 河东区| 阜康市| 桦甸市| 闸北区| 新沂市|