Permanently deletes an App Setting and all its Included / Excluded Items.
Syntax
# Via pipeline / entity object
Remove-LiquitAppSetting [-AppSetting] <AppSetting> [-WhatIf] [-Confirm]
# Via GUID
Remove-LiquitAppSetting [-ID] <Guid> [-WhatIf] [-Confirm]
Parameters
| Parameter | Type | Position | Mandatory | Pipeline | Description |
|---|---|---|---|---|---|
AppSetting |
AppSetting |
0 | Yes (set byParentEntity) |
Yes (ByValue) | The AppSetting object to delete. |
ID |
Guid |
0 | Yes (set byParentId) |
Yes (ByValue) | ID of the AppSetting to delete. |
Output: None
Supports: -WhatIf, -Confirm
Examples
# Delete by entity (pipeline)
Get-LiquitAppSetting -Name 'Outlook Settings' | Remove-LiquitAppSetting -Confirm:$false
# Delete by ID
Remove-LiquitAppSetting -ID 'a1b2c3d4-...'