mr-es335 Posted July 19, 2024 Posted July 19, 2024 Good day, I hope that this day finds you all well! I am having "issues with the following... ;----------------------------------------------- #include <AutoItConstants.au3> #include <FileConstants.au3> ;----------------------------------------------- Opt("MustDeclareVars", 1) ;------------------------------------------------ _RestoreData() ;------------------------------------------------ Func _RestoreData() ;------------------------------------------------ ; Source data Local $sSrcPath = "I:\Installations\" Local $sSrcFolder = "Install_1a" Local $sSrcRegKeyData = "\Data\Reg_Keys\add_me.reg" ;------------------------------------------------ ; ==>[A] This works... RunWait('REGEDIT /S "I:\Installations\Install_1a\Data\Reg_Keys\add_me.reg"') ; ==>[B] This does not work... RunWait('REGEDIT /S & $sSrcPath & $sSrcFolder & $sSrcRegKeyData') ;------------------ EndFunc ;==>_RestoreData ;------------------------------------------------ Question: Why does [A] work, and does not? Any assistance in this matter would be greatly appreciated! mr-es335 Sentinel Music Studios
Solution Nine Posted July 19, 2024 Solution Posted July 19, 2024 Because your quote include the vars. RunWait('REGEDIT /S ' & $sSrcPath & $sSrcFolder & $sSrcRegKeyData) mr-es335 1 “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy
ioa747 Posted July 19, 2024 Posted July 19, 2024 like that maybe RunWait('REGEDIT /S "' & $sSrcPath & $sSrcFolder & $sSrcRegKeyData & '"') mr-es335 1 I know that I know nothing
Shark007 Posted July 21, 2024 Posted July 21, 2024 also know that the script would need Admin Privileges to write to anything other than HKCU
mr-es335 Posted February 12 Author Posted February 12 Hello, Both examples provided by Nine and ioa747...work..."Thanx!" Nine got the "Solution" simply because that example looked simpler to me! ;----------------------------------------------- Opt("MustDeclareVars", 1) ;------------------------------------------------ RestoreData() ;------------------------------------------------ Func RestoreData() Local $sSrcPath = "C:\Working" Local $sSrcRegKeyData = "\AddMe.reg" ;------------------------------------------------ ; From Nine ;https://www.autoitscript.com/forum/topic/212085-import-reg-file-issue/#findComment-1535473 RunWait('REGEDIT /S ' & $sSrcPath & $sSrcRegKeyData) ; From ioa747 ;https://www.autoitscript.com/forum/topic/212085-import-reg-file-issue/#findComment-1535474 ;RunWait('REGEDIT /S "' & $sSrcPath & $sSrcRegKeyData & '"') ;------------------ EndFunc ;==>RestoreData ;------------------------------------------------ Now, how to error check the above...see... mr-es335 Sentinel Music Studios
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