New-LiquitAppSetting

This command creates a new App Setting.

Syntax

New-LiquitAppSetting [-Name] <string> [[-Enabled] <bool>] [-WhatIf] [-Confirm]

Parameters

Parameter Type Position Mandatory Default Description
Name string 0 Yes Display name for the AppSetting.
Enabled bool 1 No $true Whether the AppSetting is active.

Output: AppSetting

Supports: -WhatIf-Confirm

Examples

# Minimal creation
New-LiquitAppSetting -Name 'Outlook Settings'

# Created but disabled
New-LiquitAppSetting -Name 'Outlook Settings' -Enabled $false