ramik Posted October 15, 2004 Posted October 15, 2004 I want to register a lot of apps at install time, i currently passed in the registry and exported a [progname].reg file for each program, and edited it to keep reg data and some configs.can i import all of them in the registry using some FOR %%1 in (*.reg) do regedit /s %%1? or better to join all reg files into 1 big file?where should i add such line to allow the import into CURRENT_USER?btw, is there a way to add a new user and then import some reg values into the Current_User key for that user only?
Denney Posted October 15, 2004 Posted October 15, 2004 1. This code:for %%i in (*.reg) do regedit /s %%iwill work if you put it in a batch file (I do the same for INF files).2. To import user based tweaks, just import your registry files during RunOnceEx so that they'll be imported AFTER you log in.
Bâshrat the Sneaky Posted October 15, 2004 Posted October 15, 2004 2. To import user based tweaks, just import your registry files during RunOnceEx so that they'll be imported AFTER you log in.Or import them with cmdlines.txt at T-12, so ALL users that will be made will inherit those regtweaks!Bâshrat the Sneaky
Denney Posted October 15, 2004 Posted October 15, 2004 @Bashrat the Sneaky: Read the original post:btw, is there a way to add a new user and then import some reg values into the Current_User key for that user only?
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