We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4845e7b commit 5a81da6Copy full SHA for 5a81da6
Excel - Download JSON make PivotTable.ps1
@@ -27,8 +27,13 @@
27
#define the url of the data source
28
$url = "https://www.nrg.com/generation/asset-map.nrgcontent.default.json"
29
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
+
35
#pull the data down from the url and store the raw json
-$data = [System.Net.WebClient]::new().DownloadString($url)
36
+$data = $webclient.DownloadString($url)
37
38
#convert the data from JSON to a ps object
39
$converteddata = $data | ConvertFrom-Json
0 commit comments