kalzanth 0 Posted May 1, 2010 Hi I'm new to auto it and scripting in general. I can't get RegRead to work, right now I'm trying to just get the key to read properly. $var = RegRead ( "(HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup", "Installation Sources") MsgBox (0, "", "The registry key is" &$var ) Essentially I'm trying to build a small script that will set the installation source to a single specific folder. But it won't even tell me what's there currently. Boo. What am I doing wrong? Thanks! Share this post Link to post Share on other sites
GEOSoft 67 Posted May 1, 2010 (edited) Could be a few reasons. Run this instead. $var = RegRead ( "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup", "Installation Sources") MsgBox (0, "", "The registry key is" &$var & @CRLF & "Error Returned: " & @Error) Edited May 1, 2010 by GEOSoft GeorgeQuestion 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!" Share this post Link to post Share on other sites
ripdad 100 Posted May 1, 2010 You have a typo: RegRead ( "(HKEY Try this: $var = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup", "Installation Sources") MsgBox (0, "", "Installation Sources: " & @CRLF & @CRLF & $var ) "The mediocre teacher tells. The Good teacher explains. The superior teacher demonstrates. The great teacher inspires." -William Arthur Ward Share this post Link to post Share on other sites
kalzanth 0 Posted May 2, 2010 You have a typo: RegRead ( "(HKEY Try this: $var = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup", "Installation Sources") MsgBox (0, "", "Installation Sources: " & @CRLF & @CRLF & $var ) Thank you very much! It always seems something simple like that and despite looking over it 40 times I still missed it. Share this post Link to post Share on other sites