Free Microsoft eBooks

Here's a bunch of Microsoft eBooks for you to just download and not get around to reading.

https://blogs.msdn.microsoft.com/mssmallbiz/2017/07/11/large…

Related Stores

Microsoft
Microsoft

Comments

  • Cool thanks, I downloaded a few.

  • +10

    You can use this powershell script to download all the books (in this example to C:\msdownloads)


    $downloaddir = "C:\msbookdownload" mkdir $downloaddir function Save-Books { PARAM ( $BookUrl, $DestinationFolder ) $response = Invoke-WebRequest -Uri $BookUrl $filename = [System.IO.Path]::GetFileName($response.BaseResponse.ResponseUri.OriginalString) $filepath = [System.IO.Path]::Combine($DestinationFolder, $filename) try { $filestream = [System.IO.File]::Create($filepath) $response.RawContentStream.WriteTo($filestream) $filestream.Close() } finally { if ($filestream) { $filestream.Dispose(); } } } ((Invoke-WebRequest https://goo.gl/nYBjZn).Links | Where-Object {$_.href -like "*http://ligman.me/*"}).href | ForEach-Object { Save-Books -BookUrl $_ -DestinationFolder $downloaddir }
    • didnt test it but you are da real mvp!

    • cheers - weighs in at 3.43GB for 360 files :-)

    • Thanks, I got 331 files at 3.37GB

  • +1

    thanks for this post!

Login or Join to leave a comment