Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,19 @@ scoop will be install to `C:\Users\<YOUR USERNAME>\scoop`.

```powershell
irm get.scoop.sh | iex
# You can use proxies if you have network trouble in accessing GitHub, e.g.
```

You can use proxies if you have network trouble in accessing GitHub, e.g.
```powershell
irm get.scoop.sh -Proxy 'http://<ip:port>' | iex
```

and with credentials
```powershell
$proxyCredential = Get-Credential
irm get.scoop.sh -Proxy 'http://<ip:port>' -ProxyCredential $proxyCredential | iex
```

### Advanced Installation

If you want to have an advanced installation, you can download the installer and manually execute it with parameters.
Expand Down