-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Using Scoop behind a proxy
If your proxy is already configured in Internet Options and it doesn't require authentication, you shouldn't need to do anything else for Scoop to use it.
These instructions are for people who
- need to authenticate with their proxy, either using their Windows credentials or another username/password
- want to use a proxy server for Scoop that isn't configured in Internet Options.
Normally, Scoop is installed with
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
If you're behind a proxy you might need to run one or more of these commands first:
# If you want to use a proxy that isn't already configured in Internet Options
[net.webrequest]::defaultwebproxy = new-object net.webproxy "http://proxy.example.org:8080"
# If you want to use the Windows credentials of the logged-in user to authenticate with your proxy
[net.webrequest]::defaultwebproxy.credentials = [net.credentialcache]::defaultcredentials
# If you want to use other credentials (replace 'username' and 'password')
[net.webrequest]::defaultwebproxy.credentials = new-object net.networkcredential 'username', 'password'
These commands will affect any web requests using net.webclient
until the end of your powershell session.
Once Scoop is installed, you can use scoop config
to configure your proxy. Here's an excerpt from scoop help config
:
scoop config proxy [username:password@]host:port
By default, Scoop will use the proxy settings from Internet Options, but with anonymous authentication.
- To use the credentials for the current logged-in user, use
currentuser
in place ofusername:password
- To use the system proxy settings configured in Internet Options, use
default
in place ofhost:port
- An empty or unset value for proxy is equivalent to
default
(with no username or password) - To bypass the system proxy and connect directly, use
none
(with no username or password)
scoop config proxy currentuser@default
scoop config proxy user:password@default
# anonymous authentication to proxy.example.org on port 8080:
scoop config proxy proxy.example.org:8080
# or, with authentication:
scoop config proxy username:password@proxy.example.org:8080
scoop config rm proxy
If your proxy password contains @
or :
characters, you need to escape them using a \
, e.g.:
scoop config proxy 'username:p\@[email protected]:8080'
This is a potential bug but I found a workaround:
If you try to run
scoop config proxy [email protected]:8080
and then scoop bucket add extras
it won't work because scoop passes these credentials directly to git and git has a different proxy format.
So for "bucket add" to work you will have to change the proxy string to the format git understand so [email protected]:8080
becomes :@proxy.example.org:8080
so this will work:
scoop config proxy ':@proxy.example.org:8080'
scoop bucket add extras
but then you will have to change the proxy string back to normal to install actual packages:
scoop config proxy '[email protected]:8080'
scoop install vscode