mircea Posted January 29, 2009 Posted January 29, 2009 (edited) how can i add a reg file in silence mode ? because i got a .reg file for my microsoft office and i want to add it in silence mode is there a way ? i try with regwrite but didn't work, and with shellexecute too but still the same .. is there another way ? thank you Edit: i try with this command but still dosent work could someone tell me whats wrong ? :| ShellExecute("regedit", "-s", @ScriptDir , "\asdada.reg", @SW_HIDE) Edited January 29, 2009 by mircea
trancexx Posted January 29, 2009 Posted January 29, 2009 how can i add a reg file in silence mode ? because i got a .reg file for my microsoft office and i want to add it in silence mode is there a way ? i try with regwrite but didn't work, and with shellexecute too but still the same ..is there another way ? thank youTo paraphrase one forum member: "Sure it's possible, just open the file, parse it, use RegWrite." - BrettF if I'm not mistaking. ♡♡♡ . eMyvnE
GEOSoft Posted January 29, 2009 Posted January 29, 2009 (edited) how can i add a reg file in silence mode ? because i got a .reg file for my microsoft office and i want to add it in silence mode is there a way ? i try with regwrite but didn't work, and with shellexecute too but still the same ..is there another way ? thank youShellExecuteWait("RegEdit.exe", "/S filename.reg", "", "merge", @SW_Hide)EDITDon't forget to include the Full path for filename.reg Edited January 29, 2009 by GEOSoft George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
mircea Posted January 29, 2009 Author Posted January 29, 2009 yes but if i use regwrite it's too much too write, thats why i am asking if there isn't a way that a can run more .reg files i try with shell execute to run it silent but i don't know were i make mistake
mircea Posted January 29, 2009 Author Posted January 29, 2009 (edited) Thank you btw, are you romanian ?i got this problem now http://img232.imageshack.us/my.php?image=123yd1.jpgEdit dosent matter i found out what was the problemi just deleted merge and that was all Thank youShellExecuteWait("RegEdit.exe", "/S filename.reg", "", "", @SW_Hide) Edited January 29, 2009 by mircea
azure Posted January 29, 2009 Posted January 29, 2009 Thank you btw, are you romanian ?i got this problem now http://img232.imageshack.us/my.php?image=123yd1.jpgUse REG.EXE IMPORT REGISTRYFILE.REGit's silent.
toxicvn Posted January 30, 2009 Posted January 30, 2009 try: ShellExecute("regedit.exe", "-s \asdada.reg", @ScriptDir , "", @SW_HIDE)
azure Posted January 30, 2009 Posted January 30, 2009 Use REG.EXE IMPORT REGISTRYFILE.REGit's silent.REG.EXE also bypasses "REGISTRY EDITING HAS BEEN DISABLED BY ADMINISTRATOR" policy!
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