雨林木风纯净版系统雨林木风纯净版系统

当前位置:主页 > 雨林木风教程 >

win10系统右键添加显示隐藏文件夹

发布日期:2018-10-22      作者:雨林木风纯净版系统      来源:http://www.8ud.cn


win10系统右键添加显示隐藏文件夹?

  win10系统右键添加显示隐藏文件夹,平时大家都会隐藏自己的隐私文件,可是每次想看的时候都要去打开显示隐藏文件和文件夹的选项,但这样配置起来需要点许多次,很是麻烦。下面主编就来很大家共享个容易的办法,只要将这些功能添加到鼠标右键,这样就能轻易拿下,免去多次点击。

  一、新建一个文档,输入如下代码,并另存为:superHidden.reg

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"="显示/隐藏系统文件+扩展名""CLsid"="{13709620-C279-11CE-A49E-444553540000}"[HKEY_CuRREnT_usER/software/Microsoft/win/CurrentVersion/Explorer/Advanced]"showsuperHidden"=dword:00000000"Hidden"=dword:00000002[/code]


[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"="显示/隐藏系统文件+扩展名""CLsid"="{13709620-C279-11CE-A49E-444553540000}"[HKEY_CuRREnT_usER/software/Microsoft/win/CurrentVersion/Explorer/Advanced]"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("HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/showsuperHidden") = 1 thenwsHshell.Regwrite "HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/showsuperHidden", "0", "REG_dwoRd"wsHshell.Regwrite "HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/Hidden", "2", "REG_dwoRd"wsHshell.Regwrite "HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/HideFileExt", "1", "REG_dwoRd"wsHshell.Regwrite "HKCR/CLsid/{00000000-0000-0000-0000-000000000012}/instance/initpropertyBag/command", "显示系统文件+扩展名", "REG_sZ"wsHshell.sendKeys "{F5}+{F10}e"'wsHshell.popup "poof, they're gone!", 1, sTitle1, vbinformationelsewsHshell.Regwrite "HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/showsuperHidden", "1", "REG_dwoRd"wsHshell.Regwrite "HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/Hidden", "1", "REG_dwoRd"wsHshell.Regwrite "HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/HideFileExt", "0", "REG_dwoRd"wsHshell.Regwrite "HKCR/CLsid/{00000000-0000-0000-0000-000000000012}/instance/initpropertyBag/command", "隐藏系统文件+扩展名", "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("HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/showsuperHidden") = 1 thenwsHshell.Regwrite "HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/showsuperHidden", "0", "REG_dwoRd"wsHshell.Regwrite "HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/Hidden", "2", "REG_dwoRd"wsHshell.Regwrite "HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/HideFileExt", "1", "REG_dwoRd"wsHshell.Regwrite "HKCR/CLsid/{00000000-0000-0000-0000-000000000012}/instance/initpropertyBag/command", "显示系统文件+扩展名", "REG_sZ"wsHshell.sendKeys "{F5}+{F10}e"'wsHshell.popup "poof, they're gone!", 1, sTitle1, vbinformationelsewsHshell.Regwrite "HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/showsuperHidden", "1", "REG_dwoRd"wsHshell.Regwrite "HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/Hidden", "1", "REG_dwoRd"wsHshell.Regwrite "HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/HideFileExt", "0", "REG_dwoRd"wsHshell.Regwrite "HKCR/CLsid/{00000000-0000-0000-0000-000000000012}/instance/initpropertyBag/command", "隐藏系统文件+扩展名", "REG_sZ"wsHshell.sendKeys "{F5}+{F10}e"'wsHshell.popup "Here they are!", 1, sTitle2, vbinformationend ifset wsHshell = nothingwscript.Quit(0)[/code]

 

  三、将superHidden.vbs拷贝到C盘win目录下直接,然后双击superHidden.reg(放到任意位置直接),修改注册表,就可以了(如果安装的杀毒软件弹出阻止对话框时,请勾上老是允许,并将下方的以后老是允许的勾勾上就可以了)。

  四、这里是同时“显示系统文件+扩展名”,但你们平时使用最多的应该是“显示/隐藏扩展名”,所以,将上面的代码消除几行就可以了。如本人使用的,就只保留了“显示/隐藏扩展名”的功能。

  使用的办法。在superHidden.reg中消除:

  [code]“Hidden”=dword:00000002

  [/code]

  在superHidden.reg中消除:

  [code]wsHshell.Regwrite《/code》《code》“HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/Hidden”,《/code》《code》“2”,《/code》《code》“REG_dwoRd” [/code]

  和

  [code]《code》wsHshell.Regwrite《/code》《code》“HKCu/software/Microsoft/win/CurrentVersion/Explorer/Advanced/Hidden”,《/code》《code》“1”,《/code》《code》“REG_dwoRd” [/code]

 

  上面便是win10系统右键添加显示隐藏文件夹的办法,用户们也可以把“显示/隐藏扩展名”和“隐藏/显示系统文件”的功能分成两个进行配置方便查阅与修改,或者到网上下载软件进行配置,这样就不用手动修改注册表,以免出现问题。

友情链接