80 kinds of free downloads of Microsoft's .NET entry-level video

.NET Core 3.0 video series was announced more than 80 new free video, these videos while on Microsoft's Channel 9 and youtube above. Because online viewing transoceanic network effect is not very good, is downloaded to the machine slowly on is the best. So Scott Hanselman created a special page http://dot.net/videos .

I put a link to this page of the reorganized a bit, remove the Youtube link below explain how to download it in more than 80 entry-level video:

  • Click the series of links, such as links C # 101 to enter to the page of Channel 9, the corner there is a link that says "RSS" above - it's really simple!

image

  • Right-click on what you want to download such as MP4 Low, and then choose Copy Link Location. " Now, the link in the clipboard!
  • Next, download Scott Hanselman made a small PowerShell script to a local disk, and name it DownloadVideos.ps1, make sure to pay attention * .ps1 extension to save it, which is required to run Powershell to finish downloading the video.
  • Finally, open the PS1 file in a text editor and check the line 2 and line 3. Enter the path again for your computer, such as C: \ temp or your download folder.

#CHECK THE PATH ON LINE 2 and the FEED on LINE 3
cd "G:\Build2019\dotnetconf2019"
$a = ([xml](new-object net.webclient).downloadstring("https://channel9.msdn.com/Series/CSharp-101/feed/mp4"))
$a.rss.channel.item | foreach{ 
    $url = New-Object System.Uri($_.enclosure.url)
    $file = $url.Segments[-1]
    $file
    if (!(test-path $file)) {
        (New-Object System.Net.WebClient).DownloadFile($url, $file)
     }
}

Make sure that you copy the RSS link on top of the above is correct on line 3. We need a local video file storage folder, we also need to download the remote RSS link.

Finally, open PowerShell on a computer from the "Start" menu, and then run DownloadVideos.ps1.

 

Video Thumbnail

C#101

In this video series, Kendra Havens and Scott Hanselman discusses the concept and syntax of C # programming language through live coding demo.

Video Thumbnail

.NET Core 101

.NET Core explore the world with Microsoft's Scott Hanselman and Kendra Havens and other experts. They introduced the .NET ins and outs and how to build your first application.

Video Thumbnail

ASP.NET Core 101

Leslie Richardson and Scott Hanselman showed how to use ASP.NET to build and deploy Web applications and services that run on Linux, macOS and Windows.

Video Thumbnail

Xamarin 101

In this introductory video series, get an overview of Xamarin and how it allows you to create cross-platform mobile applications for Android and iOS.

Video Thumbnail

Desktop and .NET Core 101

From the Window for building applications in .NET Core entry-video series, learn how to create your first WinForms or WPF application to .NET Core!

Video Thumbnail

About container (Docker)

Why use container? Docker is a packaging and distributing applications with all dependencies approach. Started with Docker, and learn how to publish your application on this introductory video series!

Video Thumbnail

Enity Framework Core 101

The 101 video series will get you started Entity Framework Core, it is an object-relational mapper that simplifies the work of a relational database.

Video Thumbnail

Introduction to Visual Studio

In this short video series, Visual Studio expert Kendra Havens brief overview of Visual Studio, installation, and some great productivity tips.

Video Thumbnail

ML.NET

Welcome ML.NET machine learning! This entry-level video series introduces the concept of machine learning, what it can do and how to get started ML.NET.

Video Thumbnail

.NET for Apache Spark 101

By about Apache Spark of .NET introductory video series beginning the analysis of large data, brigade! Learn about the .NET applies to Apache Spark of all knowledge, and how big data world into the .NET ecosystem.

Guess you like

Origin www.cnblogs.com/shanyou/p/11618564.html