Skip to content

Commit 6636398

Browse files
authored
Merge pull request MicrosoftDocs#2519 from MicrosoftDocs/master
Publish 06/24/2021, 3:30 PM
2 parents 0db7cac + 0e399bb commit 6636398

File tree

2 files changed

+469
-0
lines changed

2 files changed

+469
-0
lines changed
Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
---
2+
description: Provides guidance on how to view the auto-update and repair settings of a Windows App.
3+
external help file: Microsoft.Windows.Appx.PackageManager.Commands.dll-help.xml
4+
Module Name: Appx
5+
ms.date: 06/07/2021
6+
online version: https://docs.microsoft.com/powershell/module/appx/Get-AppxPackageAutoUpdateSettings?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
7+
schema: 2.0.0
8+
---
9+
10+
# Get-AppxPackageAutoUpdateSettings
11+
12+
## SYNOPSIS
13+
Available in the Windows Insider Preview Builds of Windows 10, is the `Get-AppxPackageAutoUpdateSettings` PowerShell cmdlet. The `Get-AppxPackageAutoUpdateSettings` PowerShell cmdlet provides visibility to the settings configured on a Windows 10 client device for a particular Windows App.
14+
15+
## SYNTAX
16+
17+
```
18+
Get-AppxPackageAutoUpdateSettings [[-PackageFullName] <String>] [-ShowUpdateAvailability] [-AllUsers]
19+
[<CommonParameters>]
20+
```
21+
22+
## DESCRIPTION
23+
The `Get-AppxPackageAutoUpdateSettings` PowerShell cmdlet will return the settings configured for a specific or all installed Windows Apps in relation to Auto Update and Repair.
24+
25+
## EXAMPLES
26+
27+
### Example 1: Get all App Package Auto Update settings
28+
```
29+
PS C:\> Get-AppxPackageAutoUpdateSettings
30+
```
31+
32+
This will return the Auto Update and Repair settings for all configured and installed Windows Apps on the device, and registered to the user.
33+
34+
### Example 2: Get App Package Auto Update settings for all users
35+
```
36+
PS C:\> Get-AppxPackageAutoUpdateSettings -AllUsers
37+
```
38+
39+
This will return the Auto Update and Repair settings for all configured and installed Windows Apps that have been registered for all users.
40+
41+
### Example 3: Get a single App Package Auto Update setting
42+
```
43+
PS C:\> Get-AppxPackageAutoUpdateSettings -PackageFullName publisher.package1_1.0.0.0_neutral__8wekyb3d8bbwe
44+
```
45+
46+
This will return the Auto Update and Repair settings for a specific Windows App that has been installed and registered to the signed-in user.
47+
48+
## PARAMETERS
49+
50+
### -PackageFullName
51+
Specifies the Package Full Name of the app that is being queried.
52+
53+
```yaml
54+
Type: String
55+
Parameter Sets: (All)
56+
Aliases:
57+
58+
Required: False
59+
Position: 0
60+
Default value: None
61+
Accept pipeline input: True (ByValue)
62+
Accept wildcard characters: True
63+
```
64+
65+
### -ShowUpdateAvailability
66+
Specifies to display available update information for a specific Windows App.
67+
68+
```yaml
69+
Type: SwitchParameter
70+
Parameter Sets: (All)
71+
Aliases:
72+
73+
Required: False
74+
Position: Named
75+
Default value: None
76+
Accept pipeline input: True (ByPropertyName, ByValue)
77+
Accept wildcard characters: False
78+
```
79+
80+
### -AllUsers
81+
Specifies to display Windows App Auto Update and Repair settings for all that are installed for all users.
82+
83+
```yaml
84+
Type: SwitchParameter
85+
Parameter Sets: (All)
86+
Aliases:
87+
88+
Required: False
89+
Position: Named
90+
Default value: None
91+
Accept pipeline input: True (ByPropertyName, ByValue)
92+
Accept wildcard characters: False
93+
```
94+
95+
96+
### CommonParameters
97+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
98+
99+
## INPUTS
100+
101+
### System.String
102+
103+
### System.Management.Automation.SwitchParameter
104+
105+
## OUTPUTS
106+
107+
### System.Object
108+
## NOTES
109+
110+
## RELATED LINKS
111+
112+
[Package Manager API](http://go.microsoft.com/fwlink/?LinkId=245447)
113+
114+
[How to Add and Remove Apps](http://go.microsoft.com/fwlink/?LinkID=231020)
115+
116+
[Get-AppxPackage](./Get-AppxPackage.md)
117+
118+
[Get-AppxPackageManifest](./Get-AppxPackageManifest.md)
119+
120+
[Move-AppxPackage](./Move-AppxPackage.md)
121+
122+
[Remove-AppxPackage](./Remove-AppxPackage.md)

0 commit comments

Comments
 (0)