0

I need to be able to push out registry fixes with AD logon script to Windows 7 systems with UAC enabled. So far I have had no luck accomplishing this using the standard method that worked in XP.

regedit.exe /s

Is there a way to accomplish this without turning UAC off?

Thanks for your kind answers.

eldblz
  • 385
  • 2
  • 11
  • 21

1 Answers1

2

A logon script will run in the current user's context, which will trip UAC. You should use Group Policy Preferences Registry Settings or a Startup Script, which will run as SYSTEM instead.

The GPP way is "preferred" in most cases.

MDMarra
  • 100,734
  • 32
  • 197
  • 329
  • You're right i used GPO following this tutorial: http://www.petri.co.il/setting-up-logon-script-through-gpo-windows-server-2008.htm and everything run smooth on test :) Thank you – eldblz Nov 08 '12 at 16:03