Some of you may have may have experienced an error like so trying to install a package dumped on Xbox for example a system title

Add-AppxPackage : Deployment failed with HRESULT: 0x80073CFD, A Prerequisite for an install could not be satisfied.
Windows cannot install package because this package is not
compatible with the device. The package can only be installed on the following device families: Windows.Xbox

For this you will need the appx to be extracted if it isn't already you can my unpacker (https://github.com/tunip3/APPX-unpacker)

1) Open the appx manifest
2) look for the TargetDeviceFamily Tag in the dependencies section.
3) change the name attribute from
Name="Windows.Xbox"
To
Name="Windows.Universal"

4) Save the manifest and now you should be able to install it.