Testing an app
When you have an MSIXVC build file for testing on your development PC, install it by using thewdapp.exe install <MSIXVC> command. For more information about installing and managing your PC GDK title, see Utilizing Microsoft Game Development Kit tools to install and launch your PC title.
Diagnosing and troubleshooting Gaming Services dependencies
The MSIXVC packaging and deployment steps for the development PC depend on the Gaming Services package being installed. The GamingServices package is installed with the GDK and shouldn’t require any manual steps to set up. If you run into issues that indicate a Gaming Services package is missing, confirm that this package is installed by running the following Windows PowerShell command:Get-AppxPackage Microsoft.GamingServices
If you find that the package isn’t present, first try repairing your GDK installation. If not, locate the GamingServices.msixbundle package within the GDK installation directory, and run the following command to install it:
Add-AppxPackage <PathToGamingServices.msixbundle>
If you suspect there’s a problem with the Gaming Services package, you can manually remove it by running the following command from an administrator command prompt:
Get-AppxPackage *Microsoft.GamingServices* | Remove-AppxPackage -allusers
Finally, to manually acquire or update Gaming Services, download it from the Microsoft Store by using the following link.
Gaming Services in Microsoft Store
Find the version string from the Get-AppxPackage command and enter it exactly in this command.