Last active
June 12, 2017 07:02
-
-
Save FlakM/8decb5897765a0c8191848fde3033de6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$uri = 'https://arti.com/uri/archi.zip' | |
$creds = Get-Credential | |
$path = 'archi.zip' | |
try | |
{ | |
$r = Invoke-WebRequest -Uri $uri -Method Get -Credential $creds -OutFile -FilePath $path | |
$result = ConvertFrom-Json -InputObject $r.Content | |
} | |
catch | |
{ | |
throw $_ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment