Skip to content

Commit 5a81da6

Browse files
committed
Updated to work behind a proxy
1 parent 4845e7b commit 5a81da6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Excel - Download JSON make PivotTable.ps1

+6-1
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,13 @@
2727
#define the url of the data source
2828
$url = "https://www.nrg.com/generation/asset-map.nrgcontent.default.json"
2929

30+
#need this if connecting behind a proxy
31+
$webclient = new-object System.Net.WebClient
32+
$webclient.Headers.Add(user-agent, PowerShell Script)
33+
$webclient.Proxy.Credentials = [System.Net.CredentialCache]::DefaultNetworkCredentials
34+
3035
#pull the data down from the url and store the raw json
31-
$data = [System.Net.WebClient]::new().DownloadString($url)
36+
$data = $webclient.DownloadString($url)
3237

3338
#convert the data from JSON to a ps object
3439
$converteddata = $data | ConvertFrom-Json

0 commit comments

Comments
 (0)