Win 7 will add the command to display hidden files into the right-click menu

  

There are friends in the help area to ask how to add "show hidden files and system files" to the right-click menu, just found the method, take it out to share, hope that there is a need Friends are helpful.
The method is very simple,
Step 1 Open Notepad and copy the following code: Dim WSHShell

Set WSHShell = WScript.CreateObject("WScript.Shell")

sTitle1 = "SSH=0"

sTitle2 = "SSH=1"

if WSHShell.RegRead("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\\ShowSuperHidden") = 1 then

WSHShell.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.SendKeys "{F5}+{F10}e"

'WSHShell.Popup " Poof, they're gone!", 1, sTitle1, vbInformation

else

WSHShell.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.SendKeys "{ F5}+{F10}e"

'WSHShell.Popup "Here they a Re!", 1, sTitle2, vbInformation

end if

Set WSHShell = Nothing

WScript.Quit(0)
Save the code as SuperHidden.vbs file (Select Save - Format to select all files, enter the file name SuperHidden.vbs), and copy it to the Windows directory (or any directory)

Step2 Create a new document file and enter the following code: REGEDIT4

[HKEY_CLASSES_ROOT\\Directory\\Background\\shellex\\ContextMenuHandlers\\SuperHidden]

@="{00000000-0000-0000-0000-000000000012}"

[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"="C:\\\\WINDOWS\\\\SuperHidden.vbs"

"command"="Show/Hide Hidden Files"

"CLSID"= "{13709620-C279-11CE-A49E-444553540000}"
Copy the code, the third part of the penultimate line is the location where you installed Windows, or the location of the vbs script, the blue part of the penultimate line can be modified to Save your favorite text
as a .reg registry file and double-click to import the registry.

Copyright © Windows knowledge All Rights Reserved