Windows 7 Forums


Windows 7: adding "toggle hidden files" to context menu in 64-bit

08 Jan 2010   #1

Windows 7 Home Premium 32-bit
Atlanta, GA
 
 
adding "toggle hidden files" to context menu in 64-bit

hey guys, i have a laptop with windows 7 32-bit system and got the "toggle hidden files" on my context menu by a simple process and love it, so I wanted to have the same thing on my desktop, which is also windows 7, but it is 64-bit. I have tried a few different methods, including putting the hidden.dll (or whatever its called) in the system32 folder and using the regsvr32 command to "install" it, and nothing. I saw on another forum that that file doesn''t work for 64-bit so I was wondering if anyone here knew how to get this on a 64-bit system. I use hidden files a lot so it would be really awesome if someone could help out. Thanks a bunch.

-Taylor

My System SpecsSystem Spec

25 Aug 2010   #2

Windows 7 Professional 64Bit
Melbourne
 
 

I also use hidden files a lot and would love to know how to enable this option under Windows 7 x64 Right-Click Context Menu...
My System SpecsSystem Spec
26 Aug 2010   #3

Win7 HP 64bit
 
 

Hi,

This works OK on my 64-bit Home Premium System. It adds the option to your context or "right-click" menu.

It consists of a .vbs file and a .reg file. I can't remember where I found it though ('twas last Chrimble!)
so I'm copying the "codes" here.

Open a New Text Document.txt and copy this code into it.
Code:
Hidden = "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Hidden"
SHidden = "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ShowSuperHidden"
Set Sh = WScript.CreateObject("WScript.Shell")
St = Sh.RegRead(Hidden)
If St = 2 Then
Sh.RegWrite Hidden, 1, "REG_DWORD"
Sh.RegWrite SHidden, 1, "REG_DWORD"
Else
Sh.RegWrite Hidden, 2, "REG_DWORD"
Sh.RegWrite SHidden, 0, "REG_DWORD"
End If
Sh.SendKeys("{F5}")
Save it using "Save As..." as Show_Hidden_Files_Switch.vbs (or just save the New Text Document.txt, when saved just re-name it, including extension). Place it in your C:\Windows Folder.

Then make a .reg file using the same method with this code.
Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\Background\shell\Show / Hide Hidden Files]
"HasLUAShield"=""

[HKEY_CLASSES_ROOT\Directory\Background\shell\Show / Hide Hidden Files\command]
@="cmd.exe /c start C:\\Windows\\Show_Hidden_Files_Switch.vbs"
Save it as Whatever_You_Want.reg. Then just (Run) Merge the .reg file into the registry and you're good to go. It will "instantly" be in your context menu. No re-boot required.

If you later change your mind and want it off your context menu, make a reg file with this code.
Code:
Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\Directory\Background\shell\Show / Hide Hidden Files]
Run it and the context menu entry will be gone.

HTH.

Last edited by billynomates; 26 Aug 2010 at 11:01 AM.. Reason: Added "Undo" code.
My System SpecsSystem Spec
.


Reply

 adding "toggle hidden files" to context menu in 64-bit problems?



Thread Tools



Similar help and support threads for: adding "toggle hidden files" to context menu in 64-bit
Thread Forum
URL Files - Add "Open with" to Context Menu Tutorials
Solved Context menu to toggle the hidden flag on files and folders? Customization
Adding "Move To" to the right-click context menu Customization
Solved How to Add "Edit" for .PPS and .PPSX files to the Context Menu? Customization
BAT Files - Add "Open with" to Context Menu Tutorials


All times are GMT -5. The time now is 08:25 PM.


Seven Forums Android App Seven Forums IOS App Follow us on Facebook

Windows 7 Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows 7" and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd
  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32