SYNOPSIS

Configures AskUI environment settings.

DESCRIPTION

The AskUI-SetSettings cmdlet allows configuration of various AskUI environment settings including proxy settings, certificates, authentication tokens, workspace IDs, logging levels, and update locations.

PARAMETERS

  • -HttpProxy | <String> - Proxy address for http requests.
  • -HttpsProxy | <String> - Proxy address for https requests.
  • -ServerIdentityCertificate | <String> - Sets a server identity certificate that shall be accepted by our tooling.
  • -Token | <String> - AskUI Token.
  • -WorkspaceId | <String> - AskUI Workspace ID.
  • -LogLevel | <String> - Log level. (Default: info) Valid values: Verbose, Debug, Info, Warning, Error, Fatal
  • -Location | <String> - Update level. (Default: User) Valid values: User, Project

EXAMPLES

EXAMPLE 1

AskUI-SetSettings -HttpProxy "http://proxy:8080" -HttpsProxy "https://proxy:8080"
Sets HTTP and HTTPS proxy settings.

EXAMPLE 2

AskUI-SetSettings -Token "myToken" -WorkspaceId "wsId123" -LogLevel "Debug"
Configures authentication and logging settings.

EXAMPLE 3

AskUI-SetSettings -Location "Project" -ServerIdentityCertificate "path/to/cert"
Sets update location to Project level and configures server certificate.