Michael Posted March 11, 2008 Posted March 11, 2008 Hello all, I'm looking for a quick and easy way to install a REG file I have exported to specific workstations within a domain environment. Windows XP's Regedit does not allow REG files to be imported remotely and although I could install the REG file silently, there doesn't appear to be a method of specifying which machines I'd like the file to be installed. I've come to two conclusions, that I either need: - A third party Registry utility or - A script or adaptation of the regedit /s command to specify workstations. All recommendations/suggestions welcome! Many thanks
mattx Posted March 11, 2008 Posted March 11, 2008 Hello all, I'm looking for a quick and easy way to install a REG file I have exported to specific workstations within a domain environment. Windows XP's Regedit does not allow REG files to be imported remotely and although I could install the REG file silently, there doesn't appear to be a method of specifying which machines I'd like the file to be installed. I've come to two conclusions, that I either need: - A third party Registry utility or - A script or adaptation of the regedit /s command to specify workstations. All recommendations/suggestions welcome! Many thanks AutoIT's regwrite function may help: RegWrite ( "keyname" [,"valuename", "type", value] ) I use it quite a bit in my scripts..... 1
cookie_monster Posted March 12, 2008 Posted March 12, 2008 I was going to suggest the PolicyMaker Registry Extension but MS have pulled the download now and it looks like it's only going to be part of server 2008. Most annoying as i've used it on 2003 server and it's really very good. http://blog.stealthpuppy.com/group-policy/why-are-you-still-writing-adm-templates 1
K.C.Leblanc Posted March 12, 2008 Posted March 12, 2008 Bung the reg file on a share and then use PSexec to run regedit remotely. 1
cookie_monster Posted March 12, 2008 Posted March 12, 2008 Or run a bat file in a startup script, you could filter the GPO containing the startup script using group filtering. Put this in the bat file. Regedit /s %Logonserver%\NETLOGON\fix.reg However if you only need to do this once PSexec is probably a better bet.
Michael Posted March 12, 2008 Author Posted March 12, 2008 Thanks for all your suggestions guys, much appreciated. I think PsExec would probably be the best solution, however, in the end I ran the files manually from a network share on the 20 machines that needed it. I did search for other Remote Registry type applications, however all of them were cr@p to be honest. If there are any application writers out there, please create us an easy to use Remote Registry tool
Michael Posted March 12, 2008 Author Posted March 12, 2008 Well there was Policy Maker as suggested by cookie_monster, which could of worked (in theory), however it's now a feature for Windows Server 2008 only. I don't wish to run Windows Server 2008 until SP2 sometime in 2009. I say SP2, as Windows Server 2008 is at SP1 already, inline with Vista SP1.
Michael Posted March 12, 2008 Author Posted March 12, 2008 (edited) Thanks Plexer, but all the links are going here which is dead Edit: I have found an active link here Get it whilst you can! Edit Take 2: I've installed it, however it keeps crashing the MMC. I'm running 2003 SP2 with R2. Can anyone else verify this? Edited March 12, 2008 by Michael
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now