Get-LiquitAppSetting

This command retrieves one or more AppSettings from the server.

Syntax

# Return all AppSettings
Get-LiquitAppSetting

# Return a single AppSetting by ID
Get-LiquitAppSetting [-ID] <Guid>

# Return AppSettings matching a full-text search
Get-LiquitAppSetting [-Search] <string>

# Return AppSettings whose name matches a wildcard pattern
Get-LiquitAppSetting [-Name] <string>

Parameters

Parameter Type Position Mandatory Pipeline Description
ID Guid 0 No Yes (ByValue) Returns the single AppSetting with this ID.
Search string 0 No No Full-text search across AppSetting fields.
Name string 0 No No Filters by name. Supports * and ? wildcards.

IDSearch, and Name are mutually exclusive parameter sets. Calling without any parameter returns all AppSettings.

Output: AppSetting[]

Examples

# Get all
Get-LiquitAppSetting

# By ID
Get-LiquitAppSetting -ID 'a1b2c3d4-...'

# Wildcard name filter
Get-LiquitAppSetting -Name 'Outlook*'

# Full-text search
Get-LiquitAppSetting -Search 'Office'