Hey! I’ve been there too. To unset proxy in PowerShell, try this:
```powershell
[System.Net.WebRequest]:
efaultWebProxy = [System.Net.WebRequest]::GetSystemWebProxy()
```
This resets the proxy to the system default.
If you’re still having trouble, check out [Stack Overflow](https://stackoverflow.com/questions/tagged/powershell). There’s a ton of threads on this topic.
```powershell
[System.Net.WebRequest]:
efaultWebProxy = [System.Net.WebRequest]::GetSystemWebProxy() ```
This resets the proxy to the system default.
If you’re still having trouble, check out [Stack Overflow](https://stackoverflow.com/questions/tagged/powershell). There’s a ton of threads on this topic.
