Skip to content

Commit

Permalink
streamline Powershell statements (thanks Adam)
Browse files Browse the repository at this point in the history
  • Loading branch information
bernard357 committed Dec 22, 2016
1 parent 5a35e04 commit 1b5b69f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ Set your MCP credentials in the environment, and the initial password for hosts
On Windows there are multiple ways to set variables. You can do this by running the following in powershell:

```powershell
[Environment]::SetEnvironmentVariable("MCP_USER", "<your-name>", "Process")
[Environment]::SetEnvironmentVariable("MCP_PASSWORD", "<your-password>", "Process")
[Environment]::SetEnvironmentVariable("MCP_SSH_BOOTSTRAP_PASSWORD", "<root-password>", "Process")
$env:MCP_USER=<your-name>
$env:MCP_PASSWORD=<your-password>
$env:MCP_SSH_BOOTSTRAP_PASSWORD=<root-password>
```

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

0 comments on commit 1b5b69f

Please sign in to comment.