> ## 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-SetLocalProxySettings

### SYNOPSIS

Sets or updates the local proxy settings.

### PARAMETERS

* `-ProxyParameters` | *\<String\[]>* - (Optional) The proxy parameters for the local proxy.
* `-Port` | *\<Int32>* - (Optional) The port number for the local proxy.
* `-AutoStart` | *\<String>* - (Optional) The flag to auto start the local proxy. Accepts 'true' or 'false'.

### NOTES

This Commandlet is only available on Windows AMD64.

### EXAMPLES

#### EXAMPLE 1

This command enables auto-start for the local proxy.

```powershell theme={null}
AskUI-SetLocalProxySettings -AutoStart 'true'
```

#### EXAMPLE 2

This command sets the proxy parameters, port, and enables auto-start for the local proxy.

```powershell theme={null}
AskUI-SetLocalProxySettings -ProxyParameters 'param1', 'param2' -Port 8080 -AutoStart 'true'
```
