Skip to content

Instantly share code, notes, and snippets.

@FlakM
Last active June 12, 2017 07:02
Show Gist options
  • Save FlakM/8decb5897765a0c8191848fde3033de6 to your computer and use it in GitHub Desktop.
Save FlakM/8decb5897765a0c8191848fde3033de6 to your computer and use it in GitHub Desktop.
$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