Jump to content

Installed Application path


Recommended Posts

  • Moderators

Something like this should get you started:

$path = "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"
    For $i = 1 To 1000
        $key = RegEnumKey($path, $i)
        $val = RegRead($path & "\" & $key, "DisplayName")
            If StringInStr($val, "AutoIt") Then MsgBox(0, "", RegRead($path & "\" & $key, "InstallLocation"))
    Next

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

Many thanks for all your answers...

@JLogan3o13,

This script is working very well, many thanks, but your example suggest me 2 questions:

1- I think there is no other way that using the BDR ??

2- Is there a way to scan the BDR (uninstall) until the last Key (1 to 1000 is too much or not enough..).

Regards

Jean

Link to comment
Share on other sites

  • Moderators

Yes, there is a way. As I mentioned, this script was to get you started. Look at doing something like this after the RegEnumKey line:

If @error Then ExitLoop

That way it will scan only until it finds what it wants.

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...