Skip to content

Instantly share code, notes, and snippets.

@PowerShellMagazine
Created March 12, 2014 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PowerShellMagazine/9509338 to your computer and use it in GitHub Desktop.
Save PowerShellMagazine/9509338 to your computer and use it in GitHub Desktop.
Download SharePoint Conference 2014 Videos
#Replace the URL for the type of videos you want
$Url = (Invoke-RestMethod -Uri "https://channel9.msdn.com/Events/SharePoint-Conference/2014/RSS/mp4high" | Select -ExpandProperty Enclosure).Url
$Url | % { Start-BitsTransfer -Source $_ -Destination C:\Videos }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment