MSFN Forum: Best pass for applying registry tweaks? - MSFN Forum

Jump to content



Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Best pass for applying registry tweaks? Rate Topic: -----

#1 User is offline   [TiLT] 

  • Newbie
  • Group: Members
  • Posts: 15
  • Joined: 07-March 08

Posted 07 March 2008 - 03:54 AM

Which pass would be the best for applying registry tweaks?

I think waiting until the end would be too late for some of my tweaks.

Obviously I will be testing on my own, but I don't have much RAM so it takes me a while to test possibilities.


#2 User is offline   ajua 

  • Custom Installer Maker
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,260
  • Joined: 16-April 05

Posted 07 March 2008 - 03:57 PM

i have been applying my tweaks in FirstLogonCommands

#3 User is offline   [TiLT] 

  • Newbie
  • Group: Members
  • Posts: 15
  • Joined: 07-March 08

Posted 08 March 2008 - 12:49 AM

Seems what I want to do only makes sense in a couple of the passes anyways. Still extremely new to this vista unattended business. Thanks for the heads up on FirstLogonCommands, i'll definitely be needing it.

This is waay more complex than I expected but it's really nice too. Microsoft got it right with this installation system.

#4 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

Posted 08 March 2008 - 02:59 AM

Yep its no worries just takes a bit to get your head around it.

#5 User is offline   sp00f 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 712
  • Joined: 30-November 06

Posted 15 March 2008 - 08:51 AM

View Postelajua, on Mar 7 2008, 10:57 PM, said:

i have been applying my tweaks in FirstLogonCommands

Can you show us how you did this please? :blushing:

#6 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

  Posted 15 March 2008 - 01:03 PM

This is how I add regs during FirstLogonCommands:

I made a self installing sfx with the completed reg file with all Vista tweaks in one.

Quote

<FirstLogonCommands>
<SynchronousCommand wcm:action="add">
<CommandLine>%AppsRoot%Install\reg.exe</CommandLine>
<Description>Apply Registry Settings</Description>
<Order>60</Order>
</SynchronousCommand>


This works satisfactorily for me.

#7 User is offline   sp00f 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 712
  • Joined: 30-November 06

Posted 15 March 2008 - 01:29 PM

View PostMAVERICKS CHOICE, on Mar 15 2008, 08:03 PM, said:

This is how I add regs during FirstLogonCommands:

I made a self installing sfx with the completed reg file with all Vista tweaks in one.

Quote

<FirstLogonCommands>
<SynchronousCommand wcm:action="add">
<CommandLine>%AppsRoot%Install\reg.exe</CommandLine>
<Description>Apply Registry Settings</Description>
<Order>60</Order>
</SynchronousCommand>


This works satisfactorily for me.

At wich point in the XML ? OOBE ?

#8 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

Posted 15 March 2008 - 01:44 PM

Thats right in OOBE.

#9 User is offline   sp00f 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 712
  • Joined: 30-November 06

Posted 15 March 2008 - 02:14 PM

View PostMAVERICKS CHOICE, on Mar 15 2008, 08:44 PM, said:

Thats right in OOBE.

Tried that, but after making another user , the regtweaks are not aplied for the other user.

#10 User is offline   Pliek 

  • Member
  • PipPip
  • Group: Members
  • Posts: 149
  • Joined: 07-February 06

Posted 15 March 2008 - 02:27 PM

I did the same, but with a regtweak.cmd that executes in FirstLogonCommand.
After making a new account and after a reboot the tweaks are onely for current user, so please tell me how to get this working.

So it work....as long as you don't make any new account(s) after applying your tweaks at FirstLogonCommand.

Added in my xml:

	
	  <FirstLogonCommands>
		<SynchronousCommand wcm:action="add">
			<Order>1</Order>
			<CommandLine>cmd /c %systemroot%\setup\scripts\regtweaks.cmd</CommandLine> 
		</SynchronousCommand>
	  </FirstLogonCommands>



My regtweaks.cmd looks like this:

@echo off
REGEDIT /S %systemroot%\setup\scripts\REGTWEAKS.REG
EXIT

This post has been edited by Pliek: 15 March 2008 - 04:58 PM


#11 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

  Posted 15 March 2008 - 06:07 PM

View Postsp00f, on Mar 16 2008, 07:14 AM, said:

View PostMAVERICKS CHOICE, on Mar 15 2008, 08:44 PM, said:

Thats right in OOBE.

Tried that, but after making another user , the regtweaks are not aplied for the other user.


Yes don't know a workaround for that atm.

#12 User is offline   Pliek 

  • Member
  • PipPip
  • Group: Members
  • Posts: 149
  • Joined: 07-February 06

Posted 16 March 2008 - 02:51 AM

Ok thanks for fast reply, i'll keep on searching.

#13 User is offline   sp00f 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 712
  • Joined: 30-November 06

Posted 16 March 2008 - 02:18 PM

The only solution is : sysprep
Execute the regtweaks in sysprep and capture the install.wim
Then they work for all users

#14 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

Posted 16 March 2008 - 02:40 PM

No worries, don't wanna go down that path myself though.

#15 User is offline   ajua 

  • Custom Installer Maker
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,260
  • Joined: 16-April 05

Posted 17 March 2008 - 08:41 PM

View PostMAVERICKS CHOICE, on Mar 16 2008, 02:40 PM, said:

No worries, don't wanna go down that path myself though.

Me neither :sneaky:

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy