Classic Shell
http://www.classicshell.net/forum/

Feature Request for Classic Explorer Toolbar.
http://www.classicshell.net/forum/viewtopic.php?f=13&t=5833
Page 1 of 1

Author:  CarlCzarnecki [ Mon Mar 21, 2016 4:27 pm ]
Post subject:  Feature Request for Classic Explorer Toolbar.

Feature Request for Classic Explorer Toolbar.
Source Code included in the attached zip file.
Add 2 additional buttons to the toolbar:
[Hidden] (View Hidden Files - Toggle ON/OFF)
[Super Hidden] (View Super Hidden Files - Toggle ON/OFF)

Attachments:
Classic Shell Feature Request.zip [4.95 MiB]
Downloaded 903 times

Author:  Gaurav [ Mon Mar 21, 2016 9:26 pm ]
Post subject:  Re: Feature Request for Classic Explorer Toolbar.

Nice idea. A simple VBScript if Ivo agrees to implement it as an internal command can also do the trick:

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}")

Page 1 of 1 All times are UTC - 8 hours [ DST ]
Powered by phpBB® Forum Software © phpBB Group
https://www.phpbb.com/