How can an installed app GUID be extracted in Windows 10?

Alireza Farsani 1 Reputation point
2021-02-06T16:19:34.413+00:00

How can an installed app GUID be extracted in Windows 10?
I tried find-the-product-guid-of-installed-software-with-powershell

Even with using * wild card for its customized function "Get-InstalledSoftware -name * " the output result didn't cover most of the installed apps.
In this specific case, I want to add "Windows PowerShell ISE" to the Windows Terminal app by adding the below code to the array "list" at the JSON setting file:

 {
                "guid": "{???????????????????????}",
                "hidden": false
                "name": "Windows PowerShell ISE",
                "source": "powershell_ise.exe"

            }
Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments
{count} votes

4 answers

Sort by: Most helpful
  1. vTech 6 Reputation points
    2021-02-07T22:04:58.803+00:00

    I dont think you'll find any guids for software not installed by Windows Installer.

    https://learn.microsoft.com/en-us/windows/win32/msi/product-codes

    the thread linked below has a good rundown of different places to check. first thing that came to mind to me was to use get-ciminstance. Careful tho, msi may attempt to self repair if it thinks there's a problem with the software.

    get-ciminstance Win32_Product | Sort-Object -Property Name |Format-Table IdentifyingNumber, Name, LocalPackage -AutoSize

    https://stackoverflow.com/questions/29937568/how-can-i-find-the-product-guid-of-an-installed-msi-setup


  2. Anonymous
    2021-02-11T07:42:17.61+00:00

    Hi,
    please kindly refer to this helpful discussions here:
    https://stackoverflow.com/questions/11251034/find-guid-from-msi-file

    Please note: Information posted in the given link is hosted by a third party. Microsoft does not guarantee the accuracy and effectiveness of information

    Best regards.

    **
    If the Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


  3. Castorix31 90,686 Reputation points
    2021-02-12T16:28:38.833+00:00

    In this specific case, I want to add "Windows PowerShell ISE" to the Windows Terminal app by adding the below code to the array "list" at the JSON setting file:

    powershell_ise.exe is not an app installed with tools like Windows Installer or MSI : it does not have a GUID...


  4. Sean Liming 4,766 Reputation points Volunteer Moderator
    2021-02-13T03:50:34.987+00:00

    Did you mean the AUMID? If so, there is a PowerShell script example here: Find the Application User Model ID of an installed app


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.