Jump to content

Recommended Posts

Posted (edited)

Hello,

Newbie question:

How to get any installed application path (knowing the application name or exe name) ??.

Many thanks for any answer.

Jean

Edited by jeanm1242
Posted

Search file with his name and go to file location and copy path from address bar.

Life is like a coin. You can spend it Anyway as you wish and for your kind information. "you can spend it only once."

  • Moderators
Posted

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!

Posted

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

  • Moderators
Posted

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!

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
  • Recently Browsing   0 members

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