Hi all !
Many applications can be installed in a chosen folder (not necessary in C:\ProgramFiles \).
The question is:
Is it possible to find the path where a certain application is actually installed ?
A pseudo code to be more clear what I am looking for:
Thank you !
Many applications can be installed in a chosen folder (not necessary in C:\ProgramFiles \).
The question is:
Is it possible to find the path where a certain application is actually installed ?
A pseudo code to be more clear what I am looking for:
Code:
Sub CallTest
Dim strAppPath As String
strAppPath = FindApplicationPath("Photoshop")
MsgBox(strAppPath)
End Sub
Function FindApplicationPath(strAppName As String) As String
'Code I am looking for
End Function
Thank you !
Comment