I am trying to setup an http_proxy on windows machine, the password has a special character (@) in it that is causing the 'set' to fail. I have tried both escaping the character (\@) and url encoding it with the hex value (%40) to no avail.
Other than changing the password how can I set http_proxy with that value?
Examples: Username=Foo Password=B@r set http_proxy=http://foo:B\@r@http-gateway.domain.org:80 set http_proxy=http://foo:B%40r@http-gateway.domain.org:80
