Glowy Posted April 21, 2004 Posted April 21, 2004 (edited) I'm building an unattended XP SP1 CD with several registry tweaks.But there's a poblem with unhiding Systemfiles.I know the reg key is : [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]"ShowSuperHidden"=dword:00000001When I load the Defaultuser ntuser.dat into the registry I can see the key is set correctly.But with any user, the value doesn't even exist ? ?manualy adding the value after installation works. But how do I get it to work with all users???Help I'm desperate... this is one of the last issues with my image when this works I can go and use it...BTW I'm Using XPCreate in combination with Xplode and Config Select Edited April 21, 2004 by Glowy
rdalling Posted April 21, 2004 Posted April 21, 2004 You need to add a line to your cmdlines.txt for the HKCU portion of your automated build"REGEDIT /S d:\XP_Installed_Programs\XPUserSettingsHKCU.reg"That will install per user setting at the 11 min mark before the GUI changes to interactive mode and locks the fileRoger
Glowy Posted April 21, 2004 Author Posted April 21, 2004 uhm yeah I'm aware of that... I'm using Xplode wich is called from the cmdlines.txt and that imports the reg keysIt imports owkay as any other reg tweak I use (checked in default users' NTUSER.DAT) (Most of them in the HKCU) but it doesn't pass down to new users, other tweaks do....I'm lost FYI currently using about 60 regtweaks only 1 not working
Blyster Posted April 21, 2004 Posted April 21, 2004 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]"SuperHidden"=dword:00000001The syntax is wrong. To enable showing system files, change the above to the code below and it should work[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]"ShowSuperHidden"=dword:00000001Hope this works for you.
Glowy Posted April 21, 2004 Author Posted April 21, 2004 Dôh that's pretty stupid.... it's a typo in my post...sorry... corrected... but the problem still exists
Glowy Posted April 23, 2004 Author Posted April 23, 2004 Tried to edit the hivedef.inf.. didn't work either :C
floppyjoe Posted April 24, 2004 Posted April 24, 2004 Try this.[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden]"DefaultValue"=dword:00000001[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]"ShowSuperHidden"=dword:00000001; To get rid of that annoying backwards warning.[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden]"WarningIfNotDefault"=-
Glowy Posted April 25, 2004 Author Posted April 25, 2004 WOHOO Worked like a charm!!! THNX Mate couldn't have done it without you!!
aknott Posted April 25, 2004 Posted April 25, 2004 Hi, what a good thing,I was looking for what this f... option did'nt wnat to workmany thanks
cybpsych Posted April 26, 2004 Posted April 26, 2004 Try this.[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden]"DefaultValue"=dword:00000001[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]"ShowSuperHidden"=dword:00000001"SuperHidden"=dword:00000000does this line, "SuperHidden"=dword:00000000should be '0' or '1'?
RyanVM Posted April 29, 2004 Posted April 29, 2004 Try this.[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden]"DefaultValue"=dword:00000001[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]"ShowSuperHidden"=dword:00000001"SuperHidden"=dword:00000000does this line, "SuperHidden"=dword:00000000should be '0' or '1'? It's correct how he had it.AND OMG, IT WORKS!
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now