Get-AppxPackageAutoUpdateSettings
Provides visibility to the settings configured for a particular Windows App.
Syntax
Default (Default)
Get-AppxPackageAutoUpdateSettings
[[-PackageFullName] <String>]
[-ShowUpdateAvailability]
[-AllUsers]
[<CommonParameters>]
Description
The Get-AppxPackageAutoUpdateSettings
PowerShell cmdlet returns the settings configured for a
specific or all installed Windows Apps in relation to Auto Update and Repair.
Examples
Example 1: Get all App Package Auto Update settings
Get-AppxPackageAutoUpdateSettings
This will return the Auto Update and Repair settings for all configured and installed Windows Apps on the device, and registered to the user.
Example 2: Get App Package Auto Update settings for all users
Get-AppxPackageAutoUpdateSettings -AllUsers
This will return the Auto Update and Repair settings for all configured and installed Windows Apps that have been registered for all users.
Example 3: Get a single App Package Auto Update setting
Get-AppxPackageAutoUpdateSettings -PackageFullName publisher.package1_1.0.0.0_neutral__8wekyb3d8bbwe
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.
Example 4: Get App Package Auto Update settings for all installed Windows Apps
Get-AppxPackageAutoUpdateSettings -ShowUpdateAvailability
Displays available update information for all installed Windows Apps.
Parameters
-AllUsers
Specifies to display Windows App Auto Update and Repair settings for all that are installed for all users.
Parameter properties
Type: | SwitchParameter |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | True |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-PackageFullName
Specifies the Package Full Name of the app that's being queried.
Parameter properties
Type: | String |
Default value: | None |
Supports wildcards: | True |
DontShow: | False |
Parameter sets
(All)
Position: | 0 |
Mandatory: | False |
Value from pipeline: | True |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-ShowUpdateAvailability
Specifies to display available update information for a specific Windows App.
Parameter properties
Type: | SwitchParameter |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | True |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.