PowerShell Logo Small

Get-AppxPackageManifest



This is the built-in help made by Microsoft for the command 'Get-AppxPackageManifest', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Gets the manifest of an app package (.appx).

SYNTAX


Get-AppxPackageManifest [-Package] <String> [[-User] <String>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-AppxPackageManifest cmdlet gets the manifest of an app package (.appx). The manifest is a .xml document that contains information about the package, like the package
ID.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=288125
Package Manager API
How to Add and Remove Apps
Get-AppxPackage
Add-AppxPackage
Remove-AppxPackage
Get-AppxLog
Get-AppxLastError

REMARKS

<

Examples


Example 1

PS C:\>Get-AppxPackageManifest -Package package1_1.0.0.0_neutral__8wekyb3d8bbwe



This command gets the manifest for an app package that's named package1_1.0.0.0_neutral__8wekyb3d8bbwe.




Example 2

PS C:\>(Get-AppxPackage -Name "*WinJS*" | Get-AppxPackageManifest).package.applications.application.id



This command gets the application ID for an app package (.appx) that has "WinJS" in the name.




Example 3

PS C:\>(Get-AppxPackage -Name "*ZuneMusic*" | Get-AppxPackageManifest).Package.Capabilities



This command gets the capabilities for an app package (.appx) that has "ZuneMusic" in the name.