Reg tweaks problems
#1
Posted 20 July 2008 - 04:52 PM
#2
Posted 20 July 2008 - 06:50 PM
#3
Posted 20 July 2008 - 07:36 PM
IcemanND, on Jul 20 2008, 08:50 PM, said:
I have just one for now. I'm just trying to get the basics down. I named it SHOW_OPERATING_FILES.REG.
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "Hidden"=dword:00000001 "SuperHidden"=dword:00000001 "ShowSuperHidden"=dword:00000001
#6
Posted 26 July 2008 - 11:01 PM
COKEDUDEUSF, on Jul 20 2008, 05:52 PM, said:
I run my regtweaks from cmdlines.txt
[COMMANDS] "REGEDIT /S .\DefUserRegTweaks.reg"I also like to apply it to all users (including newly created ones) so instead of
[HKEY_CURRENT_USERI like to use
[HKEY_USERS\.DEFAULTThen it gets applied even to the 1st created user.
This post has been edited by JoeMSFN: 26 July 2008 - 11:04 PM
#7
Posted 18 August 2008 - 04:03 PM
IcemanND, on Jul 26 2008, 11:09 PM, said:
I apply it here.
[Commands] "OemPreinstall.cmd" "REGEDIT /S SHOW_OPERATING_FILES.REG" "COMPRESSION_STUFF.CMD"
Is applying it here bad? Remember I use this. I call it SHOW_OPERATING_FILES.REG.
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "Hidden"=dword:00000001 "SuperHidden"=dword:00000001 "ShowSuperHidden"=dword:00000001
#8
Posted 21 August 2008 - 12:06 PM
COKEDUDEUSF, on Aug 18 2008, 06:03 PM, said:
IcemanND, on Jul 26 2008, 11:09 PM, said:
I apply it here.
[Commands] "OemPreinstall.cmd" "REGEDIT /S SHOW_OPERATING_FILES.REG" "COMPRESSION_STUFF.CMD"
Is applying it here bad? Remember I use this. I call it SHOW_OPERATING_FILES.REG.
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "Hidden"=dword:00000001 "SuperHidden"=dword:00000001 "ShowSuperHidden"=dword:00000001
Any ideas please?
#9
Posted 21 August 2008 - 03:00 PM
You need to set SuperHidden to 0 and ShowSuperHidden to 1 if you want to see hidden system files.
If not, set SuperHidden to 1 and ShowSuperHidden to 0.
The values are opposite of each other, not the same.
Applying this manually, you'll see that these values change as I mentioned.
Beats me why there are two entries are changed when doing one thing.
This post has been edited by spacesurfer: 21 August 2008 - 03:01 PM
#10
Posted 21 August 2008 - 08:21 PM
spacesurfer, on Aug 21 2008, 05:00 PM, said:
You need to set SuperHidden to 0 and ShowSuperHidden to 1 if you want to see hidden system files.
If not, set SuperHidden to 1 and ShowSuperHidden to 0.
The values are opposite of each other, not the same.
Applying this manually, you'll see that these values change as I mentioned.
Beats me why there are two entries are changed when doing one thing.
I gonna be royally p***ed if yer right. I'm pretty sure your right. This worked when I applied it on my computer, so I don't understand why it didn't work during my unattended install. What you said does make a lot of since though.
#11
Posted 22 August 2008 - 12:50 PM
spacesurfer, on Aug 21 2008, 05:00 PM, said:
You need to set SuperHidden to 0 and ShowSuperHidden to 1 if you want to see hidden system files.
If not, set SuperHidden to 1 and ShowSuperHidden to 0.
The values are opposite of each other, not the same.
Applying this manually, you'll see that these values change as I mentioned.
Beats me why there are two entries are changed when doing one thing.
I wish it was that easy. I tried it with only ShowSuperHidded as 1 and it did not work.
#12
Posted 22 August 2008 - 03:33 PM
it's really hard to make it toggle, but i know that you're not trying to toggle it but have it applied during setup.
beats me!
#13
Posted 22 August 2008 - 06:36 PM
Remove this from cmdlines.txt:
"REGEDIT /S SHOW_OPERATING_FILES.REG"
Add this to cmdlines.txt:
"RunOnceEx.cmd"
Make a file named RunOnceEx.cmd in $OEM$ with this:
@cmdow @ /hid set key=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx reg add %key%\001 /v 1 /d "regedit /s %~dp0\SHOW_OPERATING_FILES.REG" /f
Btw, since you said in your other thread that you where having trouble getting WinRAR and 7-Zip installed from cmdlines.txt, then if you'd like, then you could install them also from first-logon instead...
I myself would recommend doing it like this:
Delete everything from cmdlines.txt and just keep:
"RunOnceEx.cmd"
Make a folder named RunOnceEx under $OEM$ and place '7-Zip-v4.42.exe', 'WinRAR-v3.71.exe' and 'SHOW_OPERATING_FILES.REG' into it.
Delete the contents of RunOnceEx.cmd and replace it with this:
@cmdow @ /hid set key=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx reg add %key%\001 /v 1 /d "%~dpn0\7-Zip-v4.42.exe" /f reg add %key%\002 /v 1 /d "%~dpn0\WinRAR-v3.71.exe" /f reg add %key%\003 /v 1 /d "regedit /s %~dpn0\SHOW_OPERATING_FILES.REG" /f
#14
Posted 22 August 2008 - 11:08 PM
#15
Posted 23 August 2008 - 12:04 AM
Martin H, on Aug 22 2008, 08:36 PM, said:
Delete the contents of RunOnceEx.cmd and replace it with this:
@cmdow @ /hid set key=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx reg add %key%\001 /v 1 /d "%~dpn0\7-Zip-v4.42.exe" /f reg add %key%\002 /v 1 /d "%~dpn0\WinRAR-v3.71.exe" /f reg add %key%\003 /v 1 /d "regedit /s %~dpn0\SHOW_OPERATING_FILES.REG" /f
Ok I got a couple of questions though. Don't I need to have cmdow on the disc somewhere? So where would be the best place to add cmdow? Could you please also explain the parts of the RunOnceEx.cmd. I understand most of it. The %~dpn0 part is the part I'm most confused about. I know the %key%\001 /v makes folders inside RunOnceEx. I know 1 /d makes a REG_SZ called one. The rest is the directory and the force overwrite switch. I still can't figure out the %~dpn0 part.
#16
Posted 23 August 2008 - 07:55 AM
Martin H, on Aug 22 2008, 08:36 PM, said:
Delete the contents of RunOnceEx.cmd and replace it with this:
@cmdow @ /hid set key=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx reg add %key%\001 /v 1 /d "%~dpn0\7-Zip-v4.42.exe" /f reg add %key%\002 /v 1 /d "%~dpn0\WinRAR-v3.71.exe" /f reg add %key%\003 /v 1 /d "regedit /s %~dpn0\SHOW_OPERATING_FILES.REG" /f
The 7-Zip and WinRaR installed good with the RunOnceEx.cmd. Unfortunately my SHOW_OPERATING_FILES.REG is not working for me. Does it have something to do with it being the admin account? I really don't know what else it could be.
#17
Posted 23 August 2008 - 03:13 PM
Now if you're absolutely sure that the tweak actually works and that SHOW_OPERATING_FILES.REG is located in "\$OEM$\RunOnceEx\", then the tweak needs to be applied after the shell has fully loaded, so try with this RunOnceEx.cmd:
@cmdow @ /hid set key=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx reg add %key%\001 /v 1 /d "%~dpn0\7-Zip-v4.42.exe" /f reg add %key%\002 /v 1 /d "%~dpn0\WinRAR-v3.71.exe" /f reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Runonce /v command0 /d "regedit /s %~dpn0\SHOW_OPERATING_FILES.REG" /f
If that dosen't work, then try this:
@cmdow @ /hid set key=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx reg add %key%\001 /v 1 /d "%~dpn0\7-Zip-v4.42.exe" /f reg add %key%\002 /v 1 /d "%~dpn0\WinRAR-v3.71.exe" /f reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Runonce /v command0 /d "cmd /c @cmdow @ /hid&ping -n 1 -w 10000 1.1.1.1®edit /s %~dpn0\SHOW_OPERATING_FILES.REG" /f
Also, remember to have cmdow.exe into '\$OEM$\$$\System32\'...
The last one will pause 10 seconds after the shell(explorer) has finished loading, so if it still dosen't work, then i'm affraid that i cannot help you...
#18
Posted 23 August 2008 - 03:42 PM
Martin H, on Aug 23 2008, 05:13 PM, said:
The last one will pause 10 seconds after the shell(explorer) has finished loading, so if it still dosen't work, then i'm affraid that i cannot help you...
I forgot the Bloody cmdow.exe. I know for a 100% fact my SHOW_OPERATING_FILES.REG is being applied to my computer. For some reason the changes are not showing up in the HKEY_CURRENT_USER, but they are showing up in the HKEY_USERS\.DEFAULT. According to this: http://unattended.ms...xp/view/web/17/
the HKEY_CURRENT_USER hive is imported over to the HKEY_USERS\.DEFAULT Hive. So I don't understand why my tweaks would show up in the HKEY_USERS\.DEFAULT, and not in the HKEY_CURRENT_USER hive. Another thing that is really weird to me is every time I create a new account the HKEY_USERS\.DEFAULT hive is being copied over to the HKEY_CURRENT_USER hive. I have created 3 accounts and the info isn't being copied over.
#19
Posted 24 August 2008 - 02:57 AM
Martin H, on Aug 23 2008, 05:13 PM, said:
Now if you're absolutely sure that the tweak actually works and that SHOW_OPERATING_FILES.REG is located in "\$OEM$\RunOnceEx\", then the tweak needs to be applied after the shell has fully loaded, so try with this RunOnceEx.cmd:
@cmdow @ /hid set key=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx reg add %key%\001 /v 1 /d "%~dpn0\7-Zip-v4.42.exe" /f reg add %key%\002 /v 1 /d "%~dpn0\WinRAR-v3.71.exe" /f reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Runonce /v command0 /d "regedit /s %~dpn0\SHOW_OPERATING_FILES.REG" /f
If that dosen't work, then try this:
@cmdow @ /hid set key=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx reg add %key%\001 /v 1 /d "%~dpn0\7-Zip-v4.42.exe" /f reg add %key%\002 /v 1 /d "%~dpn0\WinRAR-v3.71.exe" /f reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Runonce /v command0 /d "cmd /c @cmdow @ /hid&ping -n 1 -w 10000 1.1.1.1®edit /s %~dpn0\SHOW_OPERATING_FILES.REG" /f
Also, remember to have cmdow.exe into '\$OEM$\$$\System32\'...
The last one will pause 10 seconds after the shell(explorer) has finished loading, so if it still dosen't work, then i'm affraid that i cannot help you...
Thx Martin for all of yer help. I just tried a silly idea of mine and it actually worked. I added a couple of lines to my SHOW_OPERATING_FILES.REG. The bold part is the new stuff.
Quote
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"Hidden"=dword:00000001
"SuperHidden"=dword:00000001
"ShowSuperHidden"=dword:00000001
[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"ShowSuperHidden"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden]
"DefaultValue"=dword:00000001
Adding that part to the HKEY_LOCAL_MACHINE did the trick. I've been reading and learning as much as I can about the registry the last couple of days. So what I wanted to do has finally been accomplished. Thx a lot Martin I could have never of accomplished this without yer help.
This post has been edited by COKEDUDEUSF: 24 August 2008 - 03:00 AM
#20
Posted 24 August 2008 - 03:34 AM
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden]
"DefaultValue"=dword:00000001
; To get rid of that annoying backwards warning.
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden]
"WarningIfNotDefault"=-
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"ShowSuperHidden"=dword:00000001
zoub
- ← Unattended Secret: Reducing Size Of Source
- Unattended Windows 2000/XP/2003
- How to start unattended →



Help


Back to top









