2

Im collecting a list of Windows Store Applications. Im using this powershell script :

Get-AppxPackage -AllUsers

This gives me back multiple applications.

I want to know if there is a unique value for an application that stays the same when the application is updated!

This is an example from one application with its values. This is an example from one application with its values.

Jazz W
  • 139
  • 2
  • 12
  • 2
    The `PackageFamilyName` is unique. – kennyzx Jun 20 '18 at 08:27
  • @kennyzx , If i have 2 the same applications, x64 and x86. The PackageFamilyName is the same. – Jazz W Jun 20 '18 at 08:30
  • 3
    Look at the `PackageFullName`, it consists of 4 parts. The second part is the version of the package which will change in upgrade while the other 3 parts stay the same. You can use a combination of the 1st+3rd+4th part, which is unique. – kennyzx Jun 20 '18 at 08:34

1 Answers1

0

For the people who are looking for an answer, Kenny named the solution.

I quote :

Look at the PackageFullName, it consists of 4 parts. The second part is the version of the package which will change in upgrade while the other 3 parts stay the same. You can use a combination of the 1st+3rd+4th part, which is unique

What is the PackageFamilyName (PFN)?

If i have 2 the same applications, x64 and x86. The PackageFamilyName is the same.

That is correct, because it is the same app, but built for different architectures.

Bogdan Mitrache
  • 10,536
  • 19
  • 34
Jazz W
  • 139
  • 2
  • 12