> For the complete documentation index, see [llms.txt](https://docs.devolutions.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.devolutions.net/powershell-universal/it/config/command-line-options.md).

# Opzioni della riga di comando

Avvii Universal.Server.exe con le opzioni della riga di comando in PowerShell Universal per caricare un file appsettings personalizzato o avviare il server in modalità demo.

## --appsettings

```
Universal.Server.exe --appsettings <appsettings path>
```

Carica il file appsettings specificato.

## --mode

```
Universal.Server.exe --mode demo
```

Avvia PowerShell Universal in modalità demo.

{% hint style="danger" %}
La modalità demo accetta qualsiasi nome utente e password. È destinata esclusivamente alla valutazione locale e non deve essere esposta a reti non attendibili o a Internet pubblico. Per impostazione predefinita, PowerShell Universal può rimanere in ascolto su tutte le interfacce di rete. Associ il server al loopback e utilizzi un firewall host per bloccare l'accesso in entrata alla porta demo.
{% endhint %}

Ad esempio, associ un'istanza demo Windows solo al loopback IPv4:

```powershell
$env:ASPNETCORE_URLS = 'http://127.0.0.1:5000'
.\Universal.Server.exe --mode demo
```

Se è necessaria una valutazione da remoto, utilizzi una normale configurazione di autenticazione invece della modalità demo e limiti l'accesso con TLS, un reverse proxy e regole firewall.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.devolutions.net/powershell-universal/it/config/command-line-options.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
