Other features or issues related to Microsoft Partner Center
Partner Center requires each uploaded package to have a unique full name. The full name is derived from:
- Identity Name
- Publisher
- Version
- Architecture
In this case, the conflict is because the new PWABuilder output has the same Identity (name + publisher + version) as a package that was already uploaded earlier, even if that earlier package was deleted from the draft.
To resolve this, keep the same Identity name that Partner Center expects, and only change the version number in the manifest before rebuilding the package.
1. Use the expected identity name
Partner Center error shows the expected identity name:
expected:
BrianParkerWayneKent.Brioritizer
So the PWA package must use exactly that Identity Name. Do not change it to BrioritzerSideLoad.Brioritizer1 or anything else.
In PWABuilder or the manifest editor, set the Package/Identity Name back to BrianParkerWayneKent.Brioritizer.
2. Increment the package version correctly
The Store enforces version rules for Windows 10/11 packages:
- Version format:
Major.Minor.Build.Revision(four integers) - First part (Major) cannot be 0
- All parts must be between 0 and 65535
- For Store packages, the fourth part must be 0 when building (Store may change it later)
Since 1.0.1.0 already exists for that identity, choose a higher version, for example:
-
1.0.2.0or1.1.0.0or2.0.0.0
Update the Version attribute in the manifest (Package/Identity) to this new value, then rebuild the package in PWABuilder.
Partner Center will then see a different full name because the version changed, and the upload should succeed.
3. If a rollback or multiple packages are involved
The Store always delivers the highest version that a device qualifies for. If multiple packages exist:
- Higher version wins
- If versions are equal, architecture ranking is used (x64 > x86 > Arm > neutral)
So always increment the version for any new build intended to replace a previous one.
If a bad package was ever published and needs to be rolled back for new customers, the documented pattern is:
- Create a new submission, remove the bad package, upload an older package (with lower version) for new acquisitions.
- Then fix the issue and upload a new package with a higher version than the bad one so existing customers get updated.
In this scenario, only step needed is to increment the version above 1.0.1.0 and keep the identity name exactly as Partner Center expects.
References: