Remove-LiquitAppSettingIncludedItem

Removes all Included Items from an App Setting.

Syntax

# Via parent AppSetting entity
Remove-LiquitAppSettingIncludedItem [-Parent] <AppSetting> [-WhatIf] [-Confirm]

# Via parent AppSetting ID
Remove-LiquitAppSettingIncludedItem [-ID] <Guid> [-WhatIf] [-Confirm]

Parameters

Parameter Type Position Mandatory Pipeline Description
Parent AppSetting 0 Yes (set byParentEntity) Yes (ByValue) The AppSetting whose Included Items to remove.
ID Guid 0 Yes (set byParentId) Yes (ByValue) ID of the parent AppSetting.

Output: None

Supports: -WhatIf-Confirm

Examples

$setting = Get-LiquitAppSetting -Name 'Outlook Settings'
Remove-LiquitAppSettingIncludedItem -Parent $setting -Confirm:$false