Update-MgBetaWindowsUpdatesPolicy

Update the properties of an updatePolicy object.

Syntax

Update-MgBetaWindowsUpdatesPolicy
      -UpdatePolicyId <String>
      [-ResponseHeadersVariable <String>]
      [-AdditionalProperties <Hashtable>]
      [-Audience <IMicrosoftGraphWindowsUpdatesDeploymentAudience>]
      [-ComplianceChangeRules <IMicrosoftGraphWindowsUpdatesComplianceChangeRule[]>]
      [-ComplianceChanges <IMicrosoftGraphWindowsUpdatesComplianceChange[]>]
      [-CreatedDateTime <DateTime>]
      [-DeploymentSettings <IMicrosoftGraphWindowsUpdatesDeploymentSettings>]
      [-Id <String>]
      [-Headers <IDictionary>]
      [-ProgressAction <ActionPreference>]
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]
Update-MgBetaWindowsUpdatesPolicy
      -UpdatePolicyId <String>
      -BodyParameter <IMicrosoftGraphWindowsUpdatesUpdatePolicy>
      [-ResponseHeadersVariable <String>]
      [-Headers <IDictionary>]
      [-ProgressAction <ActionPreference>]
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]
Update-MgBetaWindowsUpdatesPolicy
      -InputObject <IWindowsUpdatesIdentity>
      [-ResponseHeadersVariable <String>]
      [-AdditionalProperties <Hashtable>]
      [-Audience <IMicrosoftGraphWindowsUpdatesDeploymentAudience>]
      [-ComplianceChangeRules <IMicrosoftGraphWindowsUpdatesComplianceChangeRule[]>]
      [-ComplianceChanges <IMicrosoftGraphWindowsUpdatesComplianceChange[]>]
      [-CreatedDateTime <DateTime>]
      [-DeploymentSettings <IMicrosoftGraphWindowsUpdatesDeploymentSettings>]
      [-Id <String>]
      [-Headers <IDictionary>]
      [-ProgressAction <ActionPreference>]
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]
Update-MgBetaWindowsUpdatesPolicy
      -InputObject <IWindowsUpdatesIdentity>
      -BodyParameter <IMicrosoftGraphWindowsUpdatesUpdatePolicy>
      [-ResponseHeadersVariable <String>]
      [-Headers <IDictionary>]
      [-ProgressAction <ActionPreference>]
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]

Description

Update the properties of an updatePolicy object.

Permissions

Permission type Least privileged permissions Higher privileged permissions
Delegated (work or school account) WindowsUpdates.ReadWrite.All Not available.
Delegated (personal Microsoft account) Not supported. Not supported.
Application WindowsUpdates.ReadWrite.All Not available.

Examples

Example 1: Code snippet

Import-Module Microsoft.Graph.Beta.WindowsUpdates

$params = @{
	"@odata.type" = "#microsoft.graph.windowsUpdates.updatePolicy"
	deploymentSettings = @{
		"@odata.type" = "microsoft.graph.windowsUpdates.deploymentSettings"
		schedule = @{
			gradualRollout = @{
				"@odata.type" = "#microsoft.graph.windowsUpdates.rateDrivenRolloutSettings"
				durationBetweenOffers = "P1D"
				devicePerOffer = 
			}
		}
	}
}

Update-MgBetaWindowsUpdatesPolicy -UpdatePolicyId $updatePolicyId -BodyParameter $params

This example shows how to use the Update-MgBetaWindowsUpdatesPolicy Cmdlet.

Parameters

-AdditionalProperties

Additional Parameters

Type:Hashtable
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Audience

deploymentAudience To construct, see NOTES section for AUDIENCE properties and create a hash table.

Type:IMicrosoftGraphWindowsUpdatesDeploymentAudience
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-BodyParameter

updatePolicy To construct, see NOTES section for BODYPARAMETER properties and create a hash table.

Type:IMicrosoftGraphWindowsUpdatesUpdatePolicy
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-ComplianceChangeRules

Rules for governing the automatic creation of compliance changes. To construct, see NOTES section for COMPLIANCECHANGERULES properties and create a hash table.

Type:IMicrosoftGraphWindowsUpdatesComplianceChangeRule[]
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-ComplianceChanges

Compliance changes like content approvals which result in the automatic creation of deployments using the audience and deploymentSettings of the policy. To construct, see NOTES section for COMPLIANCECHANGES properties and create a hash table.

Type:IMicrosoftGraphWindowsUpdatesComplianceChange[]
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type:SwitchParameter
Aliases:cf
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-CreatedDateTime

The date and time when the update policy was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.

Type:DateTime
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-DeploymentSettings

deploymentSettings To construct, see NOTES section for DEPLOYMENTSETTINGS properties and create a hash table.

Type:IMicrosoftGraphWindowsUpdatesDeploymentSettings
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Headers

Optional headers that will be added to the request.

Type:IDictionary
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-Id

The unique identifier for an entity. Read-only.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-InputObject

Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table.

Type:IWindowsUpdatesIdentity
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-ProgressAction

{{ Fill ProgressAction Description }}

Type:ActionPreference
Aliases:proga
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-ResponseHeadersVariable

Optional Response Headers Variable.

Type:String
Aliases:RHV
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-UpdatePolicyId

The unique identifier of updatePolicy

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type:SwitchParameter
Aliases:wi
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Inputs

Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphWindowsUpdatesUpdatePolicy

Microsoft.Graph.Beta.PowerShell.Models.IWindowsUpdatesIdentity

System.Collections.IDictionary

Outputs

Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphWindowsUpdatesUpdatePolicy

Notes

COMPLEX PARAMETER PROPERTIES

To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.

AUDIENCE <IMicrosoftGraphWindowsUpdatesDeploymentAudience>: deploymentAudience

  • [(Any) <Object>]: This indicates any property can be added to this object.
  • [Id <String>]: The unique identifier for an entity. Read-only.
  • [ApplicableContent <IMicrosoftGraphWindowsUpdatesApplicableContent- []>]: Content eligible to deploy to devices in the audience. Not nullable. Read-only.
    • [CatalogEntry <IMicrosoftGraphWindowsUpdatesCatalogEntry>]: catalogEntry
      • [(Any) <Object>]: This indicates any property can be added to this object.
      • [Id <String>]: The unique identifier for an entity. Read-only.
      • [DeployableUntilDateTime <DateTime?>]: The date on which the content is no longer available to deploy. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
      • [DisplayName <String>]: The display name of the content. Read-only.
      • [ReleaseDateTime <DateTime?>]: The release date for the content. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
    • [CatalogEntryId <String>]: ID of the catalog entry for the applicable content.
    • [MatchedDevices <IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch- []>]: Collection of devices and recommendations for applicable catalog content.
      • [DeviceId <String>]: Collection of vendors who recommend the content.
      • [RecommendedBy <String- []>]: Collection of vendors who recommend the content.
  • [Exclusions <IMicrosoftGraphWindowsUpdatesUpdatableAsset- []>]: Specifies the assets to exclude from the audience.
    • [Id <String>]: The unique identifier for an entity. Read-only.
  • [Members <IMicrosoftGraphWindowsUpdatesUpdatableAsset- []>]: Specifies the assets to include in the audience.

BODYPARAMETER <IMicrosoftGraphWindowsUpdatesUpdatePolicy>: updatePolicy

  • [(Any) <Object>]: This indicates any property can be added to this object.
  • [Id <String>]: The unique identifier for an entity. Read-only.
  • [Audience <IMicrosoftGraphWindowsUpdatesDeploymentAudience>]: deploymentAudience
    • [(Any) <Object>]: This indicates any property can be added to this object.
    • [Id <String>]: The unique identifier for an entity. Read-only.
    • [ApplicableContent <IMicrosoftGraphWindowsUpdatesApplicableContent- []>]: Content eligible to deploy to devices in the audience. Not nullable. Read-only.
      • [CatalogEntry <IMicrosoftGraphWindowsUpdatesCatalogEntry>]: catalogEntry
        • [(Any) <Object>]: This indicates any property can be added to this object.
        • [Id <String>]: The unique identifier for an entity. Read-only.
        • [DeployableUntilDateTime <DateTime?>]: The date on which the content is no longer available to deploy. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
        • [DisplayName <String>]: The display name of the content. Read-only.
        • [ReleaseDateTime <DateTime?>]: The release date for the content. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
      • [CatalogEntryId <String>]: ID of the catalog entry for the applicable content.
      • [MatchedDevices <IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch- []>]: Collection of devices and recommendations for applicable catalog content.
        • [DeviceId <String>]: Collection of vendors who recommend the content.
        • [RecommendedBy <String- []>]: Collection of vendors who recommend the content.
    • [Exclusions <IMicrosoftGraphWindowsUpdatesUpdatableAsset- []>]: Specifies the assets to exclude from the audience.
      • [Id <String>]: The unique identifier for an entity. Read-only.
    • [Members <IMicrosoftGraphWindowsUpdatesUpdatableAsset- []>]: Specifies the assets to include in the audience.
  • [ComplianceChangeRules <IMicrosoftGraphWindowsUpdatesComplianceChangeRule- []>]: Rules for governing the automatic creation of compliance changes.
    • [CreatedDateTime <DateTime?>]: The date and time when the rule was created.
    • [LastEvaluatedDateTime <DateTime?>]: The date and time when the rule was last evaluated.
    • [LastModifiedDateTime <DateTime?>]: The date and time when the rule was last modified.
  • [ComplianceChanges <IMicrosoftGraphWindowsUpdatesComplianceChange- []>]: Compliance changes like content approvals which result in the automatic creation of deployments using the audience and deploymentSettings of the policy.
    • [Id <String>]: The unique identifier for an entity. Read-only.
    • [CreatedDateTime <DateTime?>]: The date and time when a compliance change was created.
    • [IsRevoked <Boolean?>]: True indicates that a compliance change is revoked, preventing further application. Revoking a compliance change is a final action.
    • [RevokedDateTime <DateTime?>]: The date and time when the compliance change was revoked.
    • [UpdatePolicy <IMicrosoftGraphWindowsUpdatesUpdatePolicy>]: updatePolicy
  • [CreatedDateTime <DateTime?>]: The date and time when the update policy was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
  • [DeploymentSettings <IMicrosoftGraphWindowsUpdatesDeploymentSettings>]: deploymentSettings
    • [(Any) <Object>]: This indicates any property can be added to this object.
    • [ContentApplicability <IMicrosoftGraphWindowsUpdatesContentApplicabilitySettings>]: contentApplicabilitySettings
      • [(Any) <Object>]: This indicates any property can be added to this object.
      • [OfferWhileRecommendedBy <String- []>]: Offer if the update is recommended by a vendor in the list, otherwise withhold the offer.
      • [Safeguard <IMicrosoftGraphWindowsUpdatesSafeguardSettings>]: safeguardSettings
        • [(Any) <Object>]: This indicates any property can be added to this object.
        • [DisabledSafeguardProfiles <IMicrosoftGraphWindowsUpdatesSafeguardProfile- []>]: List of safeguards to ignore per device.
          • [Category <String>]: safeguardCategory
    • [Expedite <IMicrosoftGraphWindowsUpdatesExpediteSettings>]: expediteSettings
      • [(Any) <Object>]: This indicates any property can be added to this object.
      • [IsExpedited <Boolean?>]: True indicates that the deployment of the content is expedited.
      • [IsReadinessTest <Boolean?>]: True indicates that the deployment is an expedite readiness test.
    • [Monitoring <IMicrosoftGraphWindowsUpdatesMonitoringSettings>]: monitoringSettings
      • [(Any) <Object>]: This indicates any property can be added to this object.
      • [MonitoringRules <IMicrosoftGraphWindowsUpdatesMonitoringRule- []>]: Specifies the rules through which monitoring signals can trigger actions on the deployment. Rules are combined using 'or.'
        • [Action <String>]: monitoringAction
        • [Signal <String>]: monitoringSignal
        • [Threshold <Int32?>]: The threshold for a signal at which to trigger the action. An integer from 1 to 100 (inclusive). This value is ignored when the signal is ineligible and the action is offerFallback.
    • [Schedule <IMicrosoftGraphWindowsUpdatesScheduleSettings>]: scheduleSettings
      • [(Any) <Object>]: This indicates any property can be added to this object.
      • [GradualRollout <IMicrosoftGraphWindowsUpdatesGradualRolloutSettings>]: gradualRolloutSettings
        • [(Any) <Object>]: This indicates any property can be added to this object.
        • [DurationBetweenOffers <TimeSpan?>]: The duration between each set of devices being offered the update. The value is represented in ISO 8601 format for duration. Default value is P1D (one day).
      • [StartDateTime <DateTime?>]: The date on which devices in the deployment start receiving the update. When not set, the deployment starts as soon as devices are assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
    • [UserExperience <IMicrosoftGraphWindowsUpdatesUserExperienceSettings>]: userExperienceSettings
      • [(Any) <Object>]: This indicates any property can be added to this object.
      • [DaysUntilForcedReboot <Int32?>]: Specifies the number of days after an update is installed, during which the user of the device can control when the device restarts.
      • [IsHotpatchEnabled <Boolean?>]:
      • [OfferAsOptional <Boolean?>]: Specifies whether the update is offered as Optional rather than Required.

COMPLIANCECHANGERULES <IMicrosoftGraphWindowsUpdatesComplianceChangeRule- []>: Rules for governing the automatic creation of compliance changes.

  • [CreatedDateTime <DateTime?>]: The date and time when the rule was created.
  • [LastEvaluatedDateTime <DateTime?>]: The date and time when the rule was last evaluated.
  • [LastModifiedDateTime <DateTime?>]: The date and time when the rule was last modified.

COMPLIANCECHANGES <IMicrosoftGraphWindowsUpdatesComplianceChange- []>: Compliance changes like content approvals which result in the automatic creation of deployments using the audience and deploymentSettings of the policy.

  • [Id <String>]: The unique identifier for an entity. Read-only.
  • [CreatedDateTime <DateTime?>]: The date and time when a compliance change was created.
  • [IsRevoked <Boolean?>]: True indicates that a compliance change is revoked, preventing further application. Revoking a compliance change is a final action.
  • [RevokedDateTime <DateTime?>]: The date and time when the compliance change was revoked.
  • [UpdatePolicy <IMicrosoftGraphWindowsUpdatesUpdatePolicy>]: updatePolicy
    • [(Any) <Object>]: This indicates any property can be added to this object.
    • [Id <String>]: The unique identifier for an entity. Read-only.
    • [Audience <IMicrosoftGraphWindowsUpdatesDeploymentAudience>]: deploymentAudience
      • [(Any) <Object>]: This indicates any property can be added to this object.
      • [Id <String>]: The unique identifier for an entity. Read-only.
      • [ApplicableContent <IMicrosoftGraphWindowsUpdatesApplicableContent- []>]: Content eligible to deploy to devices in the audience. Not nullable. Read-only.
        • [CatalogEntry <IMicrosoftGraphWindowsUpdatesCatalogEntry>]: catalogEntry
          • [(Any) <Object>]: This indicates any property can be added to this object.
          • [Id <String>]: The unique identifier for an entity. Read-only.
          • [DeployableUntilDateTime <DateTime?>]: The date on which the content is no longer available to deploy. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
          • [DisplayName <String>]: The display name of the content. Read-only.
          • [ReleaseDateTime <DateTime?>]: The release date for the content. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
        • [CatalogEntryId <String>]: ID of the catalog entry for the applicable content.
        • [MatchedDevices <IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch- []>]: Collection of devices and recommendations for applicable catalog content.
          • [DeviceId <String>]: Collection of vendors who recommend the content.
          • [RecommendedBy <String- []>]: Collection of vendors who recommend the content.
      • [Exclusions <IMicrosoftGraphWindowsUpdatesUpdatableAsset- []>]: Specifies the assets to exclude from the audience.
        • [Id <String>]: The unique identifier for an entity. Read-only.
      • [Members <IMicrosoftGraphWindowsUpdatesUpdatableAsset- []>]: Specifies the assets to include in the audience.
    • [ComplianceChangeRules <IMicrosoftGraphWindowsUpdatesComplianceChangeRule- []>]: Rules for governing the automatic creation of compliance changes.
      • [CreatedDateTime <DateTime?>]: The date and time when the rule was created.
      • [LastEvaluatedDateTime <DateTime?>]: The date and time when the rule was last evaluated.
      • [LastModifiedDateTime <DateTime?>]: The date and time when the rule was last modified.
    • [ComplianceChanges <IMicrosoftGraphWindowsUpdatesComplianceChange- []>]: Compliance changes like content approvals which result in the automatic creation of deployments using the audience and deploymentSettings of the policy.
    • [CreatedDateTime <DateTime?>]: The date and time when the update policy was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
    • [DeploymentSettings <IMicrosoftGraphWindowsUpdatesDeploymentSettings>]: deploymentSettings
      • [(Any) <Object>]: This indicates any property can be added to this object.
      • [ContentApplicability <IMicrosoftGraphWindowsUpdatesContentApplicabilitySettings>]: contentApplicabilitySettings
        • [(Any) <Object>]: This indicates any property can be added to this object.
        • [OfferWhileRecommendedBy <String- []>]: Offer if the update is recommended by a vendor in the list, otherwise withhold the offer.
        • [Safeguard <IMicrosoftGraphWindowsUpdatesSafeguardSettings>]: safeguardSettings
          • [(Any) <Object>]: This indicates any property can be added to this object.
          • [DisabledSafeguardProfiles <IMicrosoftGraphWindowsUpdatesSafeguardProfile- []>]: List of safeguards to ignore per device.
            • [Category <String>]: safeguardCategory
      • [Expedite <IMicrosoftGraphWindowsUpdatesExpediteSettings>]: expediteSettings
        • [(Any) <Object>]: This indicates any property can be added to this object.
        • [IsExpedited <Boolean?>]: True indicates that the deployment of the content is expedited.
        • [IsReadinessTest <Boolean?>]: True indicates that the deployment is an expedite readiness test.
      • [Monitoring <IMicrosoftGraphWindowsUpdatesMonitoringSettings>]: monitoringSettings
        • [(Any) <Object>]: This indicates any property can be added to this object.
        • [MonitoringRules <IMicrosoftGraphWindowsUpdatesMonitoringRule- []>]: Specifies the rules through which monitoring signals can trigger actions on the deployment. Rules are combined using 'or.'
          • [Action <String>]: monitoringAction
          • [Signal <String>]: monitoringSignal
          • [Threshold <Int32?>]: The threshold for a signal at which to trigger the action. An integer from 1 to 100 (inclusive). This value is ignored when the signal is ineligible and the action is offerFallback.
      • [Schedule <IMicrosoftGraphWindowsUpdatesScheduleSettings>]: scheduleSettings
        • [(Any) <Object>]: This indicates any property can be added to this object.
        • [GradualRollout <IMicrosoftGraphWindowsUpdatesGradualRolloutSettings>]: gradualRolloutSettings
          • [(Any) <Object>]: This indicates any property can be added to this object.
          • [DurationBetweenOffers <TimeSpan?>]: The duration between each set of devices being offered the update. The value is represented in ISO 8601 format for duration. Default value is P1D (one day).
        • [StartDateTime <DateTime?>]: The date on which devices in the deployment start receiving the update. When not set, the deployment starts as soon as devices are assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
      • [UserExperience <IMicrosoftGraphWindowsUpdatesUserExperienceSettings>]: userExperienceSettings
        • [(Any) <Object>]: This indicates any property can be added to this object.
        • [DaysUntilForcedReboot <Int32?>]: Specifies the number of days after an update is installed, during which the user of the device can control when the device restarts.
        • [IsHotpatchEnabled <Boolean?>]:
        • [OfferAsOptional <Boolean?>]: Specifies whether the update is offered as Optional rather than Required.

DEPLOYMENTSETTINGS <IMicrosoftGraphWindowsUpdatesDeploymentSettings>: deploymentSettings

  • [(Any) <Object>]: This indicates any property can be added to this object.
  • [ContentApplicability <IMicrosoftGraphWindowsUpdatesContentApplicabilitySettings>]: contentApplicabilitySettings
    • [(Any) <Object>]: This indicates any property can be added to this object.
    • [OfferWhileRecommendedBy <String- []>]: Offer if the update is recommended by a vendor in the list, otherwise withhold the offer.
    • [Safeguard <IMicrosoftGraphWindowsUpdatesSafeguardSettings>]: safeguardSettings
      • [(Any) <Object>]: This indicates any property can be added to this object.
      • [DisabledSafeguardProfiles <IMicrosoftGraphWindowsUpdatesSafeguardProfile- []>]: List of safeguards to ignore per device.
        • [Category <String>]: safeguardCategory
  • [Expedite <IMicrosoftGraphWindowsUpdatesExpediteSettings>]: expediteSettings
    • [(Any) <Object>]: This indicates any property can be added to this object.
    • [IsExpedited <Boolean?>]: True indicates that the deployment of the content is expedited.
    • [IsReadinessTest <Boolean?>]: True indicates that the deployment is an expedite readiness test.
  • [Monitoring <IMicrosoftGraphWindowsUpdatesMonitoringSettings>]: monitoringSettings
    • [(Any) <Object>]: This indicates any property can be added to this object.
    • [MonitoringRules <IMicrosoftGraphWindowsUpdatesMonitoringRule- []>]: Specifies the rules through which monitoring signals can trigger actions on the deployment. Rules are combined using 'or.'
      • [Action <String>]: monitoringAction
      • [Signal <String>]: monitoringSignal
      • [Threshold <Int32?>]: The threshold for a signal at which to trigger the action. An integer from 1 to 100 (inclusive). This value is ignored when the signal is ineligible and the action is offerFallback.
  • [Schedule <IMicrosoftGraphWindowsUpdatesScheduleSettings>]: scheduleSettings
    • [(Any) <Object>]: This indicates any property can be added to this object.
    • [GradualRollout <IMicrosoftGraphWindowsUpdatesGradualRolloutSettings>]: gradualRolloutSettings
      • [(Any) <Object>]: This indicates any property can be added to this object.
      • [DurationBetweenOffers <TimeSpan?>]: The duration between each set of devices being offered the update. The value is represented in ISO 8601 format for duration. Default value is P1D (one day).
    • [StartDateTime <DateTime?>]: The date on which devices in the deployment start receiving the update. When not set, the deployment starts as soon as devices are assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
  • [UserExperience <IMicrosoftGraphWindowsUpdatesUserExperienceSettings>]: userExperienceSettings
    • [(Any) <Object>]: This indicates any property can be added to this object.
    • [DaysUntilForcedReboot <Int32?>]: Specifies the number of days after an update is installed, during which the user of the device can control when the device restarts.
    • [IsHotpatchEnabled <Boolean?>]:
    • [OfferAsOptional <Boolean?>]: Specifies whether the update is offered as Optional rather than Required.

INPUTOBJECT <IWindowsUpdatesIdentity>: Identity Parameter

  • [ApplicableContentCatalogEntryId <String>]: The unique identifier of applicableContent
  • [ApplicableContentDeviceMatchDeviceId <String>]: The unique identifier of applicableContentDeviceMatch
  • [CatalogEntryId <String>]: The unique identifier of catalogEntry
  • [CatalogId <String>]: Usage: catalogID='{catalogID}'
  • [ComplianceChangeId <String>]: The unique identifier of complianceChange
  • [DaysInPast <Int32?>]: Usage: daysInPast={daysInPast}
  • [DeploymentId <String>]: The unique identifier of deployment
  • [EditionId <String>]: The unique identifier of edition
  • [KbNumber <Int32?>]: Usage: kbNumber={kbNumber}
  • [KnownIssueId <String>]: The unique identifier of knownIssue
  • [ProductId <String>]: The unique identifier of product
  • [ProductRevisionId <String>]: The unique identifier of productRevision
  • [ResourceConnectionId <String>]: The unique identifier of resourceConnection
  • [UpdatableAssetId <String>]: The unique identifier of updatableAsset
  • [UpdatePolicyId <String>]: The unique identifier of updatePolicy

https://learn.microsoft.com/powershell/module/microsoft.graph.beta.windowsupdates/update-mgbetawindowsupdatespolicy

https://learn.microsoft.com/graph/api/windowsupdates-updatepolicy-update?view=graph-rest-beta