Link to home
Start Free TrialLog in
Avatar of jtgraphic
jtgraphic

asked on

"Do not show hidden files and folders" domain setting.

Hello,

I've searched everywhere for a solution to this.  I am trying to use either a batch file, VB script, or Group Policy on Windows Server 2003 to set this option to "Do not show hidden files and folders" on Windows XP and 2000 machines.  Any thoughts out there...?
Avatar of Pber
Pber
Flag of Canada image

Check out these links:

http://www.winguides.com/registry/display.php/1007/
http://www.extremetech.com/article2/0,1697,1838913,00.asp

Do the tweak in either a batch or a batch delivered via a logon GPO
so do a reg.exe from a batch

reg add HKCU\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v Hidden /t REG_DWORD /d 2
Wait a minute, that path is wrong.

Try this instead:

reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v Hidden /t REG_DWORD /d 2
ASKER CERTIFIED SOLUTION
Avatar of Pber
Pber
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jtgraphic
jtgraphic

ASKER

Like a charm!  Thank you much.