Skip to content

Instantly share code, notes, and snippets.

@petetnt
Last active November 26, 2019 21:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save petetnt/511e4a6db9b5132abf253dcae4003810 to your computer and use it in GitHub Desktop.
Save petetnt/511e4a6db9b5132abf253dcae4003810 to your computer and use it in GitHub Desktop.
Finding UWP / WindowStore package names for launching games (and others)
# For some reason it's super hard to find package names and their application IDs for Windows
# if you need one (for example for GloSC). Luckily you can also use this PowerShell oneliner
#
# Step:
# 1. Open PowerShell
# 2. Run the following command, replace the ApplicationName with your app name (eg. Gears 5, OuterWorlds, BloodStained)
$AppToFind="<ApplicationName>";"$(Get-AppPackage -Name "*$AppToFind*")!$((Get-AppxPackage -Name "*$AppToFind*" | Get-AppxPackageManifest).package.applications.application.id)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment