Skip to content

Commit

Permalink
Merge branch 'main' into patch-168
Browse files Browse the repository at this point in the history
  • Loading branch information
tiburd authored Oct 23, 2023
2 parents 46fe39b + e44e3f4 commit 70d8131
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions docset/winserver2022-ps/appx/Get-AppxPackage.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,30 @@ Get-AppxPackage -Name "Package17" -User "Contoso\EvanNarvaez"
This command displays information about `Package17` if it's installed in the specified user
profile.

### Example 3: Get a particular app package information

```powershell
Get-AppxPackage -Name Microsoft.ScreenSketch
```

This command displays information about the ScreenSketch app.

### Example 4: Get all app packages for a particular Publisher

```powershell
Get-AppxPackage -Publisher "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
```

This command lists all the Microsoft app packages that are installed on the computer.

### Example 5: Get all app packages with PackageTypeFilter

```powershell
Get-AppxPackage -PackageTypeFilter Bundle,Framework,Main,Resource
```

This command lists all the app packages with PackageTypeFilter installed on the computer.

## PARAMETERS

### -AllUsers
Expand Down

0 comments on commit 70d8131

Please sign in to comment.