Skip to content

Instantly share code, notes, and snippets.

@PowerShellMagazine
PowerShellMagazine / SPC14Videos.PS1
Created March 12, 2014 15:35
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 }