devxlogo

GetApplicationPath – Retrieve the path of a Windows application from the Registry

Const HKEY_LOCAL_MACHINE = &H80000002' Get the path of a Windows application' or an empty string if the application isn't registered'' this routine only works for those applications that register' themselves under the registry key' HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionApp Paths'' You can use it to retrieve the path of all MSOffice apps,' MS Access, SQl Server, Windows Dialer, and more, for example'      ' Run Excel in a maximized window'      Shell GetApplicationPath("EXCEL.EXE"), vbMaximizedFocus'' requires the GetRegistryValue functionFunction GetApplicationPath(ByVal ExeName As String) As String    GetApplicationPath = GetRegistryValue(HKEY_LOCAL_MACHINE, _        "SoftwareMicrosoftWindowsCurrentVersionApp Paths" & ExeName, "")End Function

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.