Skip to content

Commit db51414

Browse files
authored
Merge pull request MicrosoftDocs#3668 from MicrosoftDocs/main
Publish 10/17/2023, 3:30 PM
2 parents a9707c0 + e44e3f4 commit db51414

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

docset/winserver2022-ps/appx/Get-AppxPackage.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,30 @@ Get-AppxPackage -Name "Package17" -User "Contoso\EvanNarvaez"
4747
This command displays information about `Package17` if it's installed in the specified user
4848
profile.
4949

50+
### Example 3: Get a particular app package information
51+
52+
```powershell
53+
Get-AppxPackage -Name Microsoft.ScreenSketch
54+
```
55+
56+
This command displays information about the ScreenSketch app.
57+
58+
### Example 4: Get all app packages for a particular Publisher
59+
60+
```powershell
61+
Get-AppxPackage -Publisher "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
62+
```
63+
64+
This command lists all the Microsoft app packages that are installed on the computer.
65+
66+
### Example 5: Get all app packages with PackageTypeFilter
67+
68+
```powershell
69+
Get-AppxPackage -PackageTypeFilter Bundle,Framework,Main,Resource
70+
```
71+
72+
This command lists all the app packages with PackageTypeFilter installed on the computer.
73+
5074
## PARAMETERS
5175

5276
### -AllUsers

0 commit comments

Comments
 (0)