Jump to content

Recommended Posts

Posted (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 by Velius
Posted

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
Posted (edited)

Thanks, tried

...$reg = 'value'....
at first but I guess there was something wrong.

cheers

Edited by Velius

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...