DotNet conference was held in June 2014, I was downloading the videos and slides, downloading one by one takes too much time so I decided to share write powershell script which will download all available videos in DotNet Conference and will also download slides. I have uploaded script file in Technet Gallery and you can download it from this link.

Dot NET Conference 2014 downloads
Dot NET Conference 2014 downloads

The attached script has the following key features

  • Downloads all the DotNet 2013 Conference Sessions and Slides
  • Makes sure no errors come up due to Illegal File names.
  • If you stop the script and restart in the middle, it will start where it left off and not from beginning.

In this script i have added High MP4 videos to download which are larger in size and to download small size videos, you just need to change the variable values in the attached file.

# SharePoint Conference 2014 Videos 
$a = ($rss.downloadstring("http://channel9.msdn.com/Events/dotnetConf/2014/RSS/mp4high"))  
$b = ($rss.downloadstring("http://channel9.msdn.com/Events/dotnetConf/2014/RSS/slides"))  

#other qualities for the videos only. Choose the one you want! 
# $a = ($rss.downloadstring("http://channel9.msdn.com/Events/dotnetConf/2014/RSS/mp4"))  
#$a = ($rss.downloadstring("http://channel9.msdn.com/Events/dotnetConf/2014/RSS/mp3"))

Just add # sign before variable $a, as shown in above code (it will add it as comment) and then remove the # sign from any of the commented code. Just shown below.

# SharePoint Conference 2014 Videos 
# $a = ($rss.downloadstring("http://channel9.msdn.com/Events/dotnetConf/2014/RSS/mp4high"))  
$b = ($rss.downloadstring("http://channel9.msdn.com/Events/dotnetConf/2014/RSS/slides"))  

#other qualities for the videos only. Choose the one you want! 
 $a = ($rss.downloadstring("http://channel9.msdn.com/Events/dotnetConf/2014/RSS/mp4"))  
#$a = ($rss.downloadstring("http://channel9.msdn.com/Events/dotnetConf/2014/RSS/mp3"))

Now run the script, and you will be able to download all videos & slides for DotNet 2014 Conference. You can download script from from Technet Gallery.

Adnan, a distinguished professional, boasts an impressive track record as a Microsoft MVP, having achieved this prestigious recognition for the eighth consecutive year since 2015. With an extensive career spanning over 18 years, Adnan has honed his expertise in various domains, notably excelling in SharePoint, Microsoft 365, Microsoft Teams, the .Net Platform, and Microsoft BI. Presently, he holds the esteemed position of Senior Microsoft Consultant at Olive + Goose. Notably, Adnan served as the MCT Regional Lead for the Pakistan Chapter from 2012 to 2017, showcasing his leadership and commitment to fostering growth within the tech community. His journey in the realm of SharePoint spans 14 years, during which he has undertaken diverse projects involving both intranet and internet solutions for both private and government sectors. His impact has transcended geographical boundaries, leaving a mark on projects in the United States and the Gulf region, often collaborating with Fortune 500 companies. Beyond his roles, Adnan is a dedicated educator, sharing his insights and knowledge as a trainer. He also passionately advocates for technology, frequently engaging with the community through speaking engagements in various forums. His multifaceted contributions exemplify his dedication to the tech field and his role in driving its evolution.

Leave a Reply