Velius Posted July 1, 2008 Posted July 1, 2008 (edited) Hi @all The title pretty much sums it up. Here's the code: $reg = RegRead("HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Nls\Language", "InstallLanguage") Now how do I have to insert the return value in a 'if' condition? If > That's where I stumble upon < Run ......... Any help is much apreciated. Thanks. Edited July 1, 2008 by Velius
PsaltyDS Posted July 1, 2008 Posted July 1, 2008 Hi @all The title pretty much sums it up. Here's the code: $reg = RegRead("HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Nls\Language", "InstallLanguage") Now how do I have to insert the return value in a 'if' condition? If > That's where I stumble upon < Run ......... Any help is much apreciated. Thanks. $reg = RegRead(...whatever) If $reg = "something" Then Run(...whatever) Or: If RegRead(...whatever) = "something" Then Run(...whatever) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Velius Posted July 1, 2008 Author Posted July 1, 2008 (edited) Thanks, tried ...$reg = 'value'.... at first but I guess there was something wrong. cheers Edited July 1, 2008 by Velius
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