PowerShell Logo Small

Get-AppxPackageManifest



This is the built-in help made by Microsoft for the command 'Get-AppxPackageManifest', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 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] <AppxPackage> [[-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=215771
Package Manager API
How to Add and Remove Apps
Get-AppxPackage
Add-AppxPackage
Remove-AppxPackage
Get-AppxLog
Get-AppxLastError

REMARKS

<

Examples




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.






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



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