> ## Documentation Index
> Fetch the complete documentation index at: https://docs.askui.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AskUI-RemoveSettings

### SYNOPSIS

Removes AskUI environment settings.

### DESCRIPTION

The AskUI-RemoveSettings cmdlet removes specified AskUI environment settings from either the User or Project level configuration.
Multiple settings can be removed simultaneously using switches for each setting type.

### PARAMETERS

* `-HttpProxy` | *\<SwitchParameter>* - Removes HTTP Proxy address from the settings.
* `-HttpsProxy` | *\<SwitchParameter>* - Removes HTTPS Proxy address from the settings.
* `-Token` | *\<SwitchParameter>* - Removes AskUI Token from the settings.
* `-WorkspaceId` | *\<SwitchParameter>* - Removes AskUI Workspace ID from the settings.
* `-LogLevel` | *\<SwitchParameter>* - Removes Log level from the settings.
* `-EnvironmentVariables` | *\<SwitchParameter>* - Removes All Environment Variables from the settings.
* `-Credentials` | *\<SwitchParameter>* - Removes All Credentials from the settings.
* `-ServerIdentityCertificate` | *\<SwitchParameter>* - Removes the server identity certificate from the settings.
* `-Location` | *\<String>* - Update level. (Default: User)
  Valid values: User, Project

### EXAMPLES

#### EXAMPLE 1

Removes both HTTP and HTTPS proxy settings from User level configuration.

```powershell theme={null}
AskUI-RemoveSettings -HttpProxy -HttpsProxy
```

#### EXAMPLE 2

Removes Token and WorkspaceId from Project level configuration.

```powershell theme={null}
AskUI-RemoveSettings -Token -WorkspaceId -Location Project
```

#### EXAMPLE 3

Removes all environment variables and credentials from User level configuration.

```powershell theme={null}
AskUI-RemoveSettings -EnvironmentVariables -Credentials
```
