> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Testing packages on a development PC

> Testing packages on a development PC

This section will describe how to test a PC Microsoft Game Development Kit (GDK) game after it has been successfully packaged into an MSIXVC build file, in addition to providing diagnostic steps on the GamingServices dependencies that need to be present to run an installed package successfully.

<Tip>You can sideload and test **MSIXVC2 packages** by using the `wdapp install` command described in this article. You can also upload the MSIXVC2 package that you test locally directly to Partner Center. For more information, see [Getting started with MSIXVC2 for PC](/build/core-features/common/packaging/overviews/packaging-getting-started-for-PC-msixvc2).</Tip>

To install the following components, and to test packaged games by using this GDK, a 19H1 build of Windows is required on the target development PC.

## Testing an app

When you have an MSIXVC build file for testing on your development PC, install it by using the `wdapp.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](/tools/tools-pc/launching-on-pc).

## 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](ms-windows-store://pdp/?productid=9MWPM2CQNLHN)

Find the version string from the `Get-AppxPackage` command and enter it exactly in this command.


## Related topics

- [Packaging and deployment for XBOX GDK titles](/build/core-features/common/packaging/index.md)
- [Prerelease testing options](/publishing/game-publishing/publishing-processes/managed-creators/publishing-processes-prerelease.md)
- [Enabling XStore development and testing](/publishing/xstore-commerce/xstore-product-testing-setup.md)
- [Title packaging, updates, and streaming-install testing](/build/core-features/common/packaging/title-packaging-streaming-install-testing.md)
- [Creating, examining, and testing content updates](/build/core-features/common/packaging/packaging-testing-updates.md)
