Skip to content

Commit 1b5b69f

Browse files
committed
streamline Powershell statements (thanks Adam)
1 parent 5a35e04 commit 1b5b69f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/setup.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ Set your MCP credentials in the environment, and the initial password for hosts
4545
On Windows there are multiple ways to set variables. You can do this by running the following in powershell:
4646

4747
```powershell
48-
[Environment]::SetEnvironmentVariable("MCP_USER", "<your-name>", "Process")
49-
[Environment]::SetEnvironmentVariable("MCP_PASSWORD", "<your-password>", "Process")
50-
[Environment]::SetEnvironmentVariable("MCP_SSH_BOOTSTRAP_PASSWORD", "<root-password>", "Process")
48+
$env:MCP_USER=<your-name>
49+
$env:MCP_PASSWORD=<your-password>
50+
$env:MCP_SSH_BOOTSTRAP_PASSWORD=<root-password>
5151
```
5252

5353
Alternatively, open the Configuration Panel and look for System settings. Then add system environment variables

0 commit comments

Comments
 (0)