Skip to content

Instantly share code, notes, and snippets.

@immontilla
Created February 14, 2019 20:02
Show Gist options
  • Save immontilla/be114487dbfebbf436bfbd8ea0b6c7d2 to your computer and use it in GitHub Desktop.
Save immontilla/be114487dbfebbf436bfbd8ea0b6c7d2 to your computer and use it in GitHub Desktop.
Just a Powershell script to download any Adobe Connect recording as a zip file
param([string]$filename="file.zip",[string]$url="")
Invoke-WebRequest -Uri ($url + "output/filename.zip?download=zip") -OutFile $filename
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment