Delen via


Remove-CMSettingDeployment

SYNOPSIS

Verwijder een implementatie voor een instellingenbeleidsobject.

SYNTAX

Remove-CMSettingDeployment [-CMSettingsDeployment] <SettingsDeployment> [-Force] [-DisableWildcardHandling]
 [-ForceWildcardHandling] [<CommonParameters>]

DESCRIPTION

Verwijder een implementatie voor een instellingenbeleidsobject. Verwijder bijvoorbeeld de implementatie van een BitLocker-beheerbeleid of een Microsoft Defender Application Control beleid.

EXAMPLES

Voorbeeld 1: Alle implementaties voor een BitLocker-beheerinstellingenobject verwijderen

In dit voorbeeld wordt eerst een BitLocker-beheerinstellingenobject op de pagina. Vervolgens wordt de pipe-operator gebruikt om alle implementaties voor dat beleidsobject op te halen en worden deze implementaties verwijderd.

Get-CMBlmSetting -Name "My BitLocker settings" | Get-CMSettingDeployment | Remove-CMSettingDeployment

Voorbeeld 2: Alle implementaties naar een specifieke verzameling verwijderen voor een Microsoft Defender Application Control-instellingenobject

In dit voorbeeld wordt eerst een Microsoft Defender Application Control instellingenobject. Vervolgens wordt de pipe-operator gebruikt om alle implementaties voor dat beleidsobject op te halen. Met de component Where-Object wordt de lijst met implementaties gefilterd op die naar de verzameling Alle bureaublad- en servercl clients en worden deze implementaties verwijderd.

Get-CMWdacSetting -Name "My App Control settings" | Get-CMSettingDeployment | Where-Object { $_.CollectionId -eq (Get-CMCollection -Name "All Desktop and Server Clients").CollectionId } | Remove-CMSettingDeployment

PARAMETERS

-CMSettingsDeployment

Geef het implementatieobject instellingen op dat moet worden geconfigureerd. Gebruik de cmdlet Get-CMSettingDeployment om het implementatieobject op te halen.

Type: SettingsDeployment
Parameter Sets: (All)
Aliases:

Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-DisableWildcardHandling

Deze parameter behandelt jokertekens als letterlijke tekenwaarden. U kunt deze niet combineren met ForceWildcardHandling.

Type: SwitchParameter
Parameter Sets: (All)
Aliases:

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

-Force

Voer de opdracht uit zonder om bevestiging te vragen.

Type: SwitchParameter
Parameter Sets: (All)
Aliases:

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

-ForceWildcardHandling

Deze parameter verwerkt jokertekens en kan leiden tot onverwacht gedrag (niet aanbevolen). U kunt deze niet combineren met DisableWildcardHandling.

Type: SwitchParameter
Parameter Sets: (All)
Aliases:

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

CommonParameters

Deze cmdlet biedt ondersteuning voor de meest gebruikte parameters: -Debug, - ErrorAction, - ErrorVariable, - InformationAction, -InformationVariable, - OutVariable,-OutBuffer, - PipelineVariable - Verbose, - WarningAction en -WarningVariable. Zie voor meer informatie about_CommonParameters.

INPUTS

Microsoft.ConfigurationManagement.PowerShell.Cmdlets.Deployments.SettingsDeployment.SettingsDeployment

OUTPUTS

Microsoft.ConfigurationManagement.PowerShell.Cmdlets.Deployments.SettingsDeployment.SettingsDeployment

OPMERKINGEN

Get-CMSettingDeployment

New-CMSettingDeployment

Set-CMSettingDeployment