How to find the UpgradeCode and ProductCode of an installed application in Windows 7

后端 未结 11 1423
囚心锁ツ
囚心锁ツ 2020-11-27 04:36

I have an application installed on my machine. I also have its source code but somehow the ProductCode and UpgradeCode of this application were changed.

Now I want t

11条回答
  •  面向向阳花
    2020-11-27 04:56

    If anyone wants to get installed application package code, just execute below command with your application name in the command prompt. You will be getting product code along with package code.

    wmic product where "Name like '%YOUR_APPLICATION_NAME%'" get IdentifyingNumber, PackageCode

提交回复
热议问题