Microsoft eBook Give-Away!

Notice: Page may contain affiliate links for which we may earn a small commission through services like Amazon Affiliates or Skimlinks.

warlockedyou

Member
Sep 4, 2016
217
18
18
need a download all button
There is a section in the bottom on the post that tells y ou how to BULK download them all.

1.) It has a link to .txt file which contains URLs for you to curl/wget
2.) It also has a powershell script that you can run and it will download all the books


EDIT:
Link to the text file - LINK
Link to the powershell - LINK
 
  • Like
Reactions: Jax_the_Gnome

Churchill

Admiral
Jan 6, 2016
838
213
43
and for those of us on mac/linux:

wget --content-disposition --trust-server-names -i <TXTFILE>

still names the mobis something wonky. oh well.
 
  • Like
Reactions: T_Minus

zeynel

Dream Large, Live Larger
Nov 4, 2015
505
116
43
48
i copy paste the link file to jdownloader , works fine
 

RTM

Well-Known Member
Jan 26, 2014
956
359
63
Unfortunately, the Windows internals books are not there (that would have been awesome), but I guess I can use some books on powershell.
 

frogtech

Well-Known Member
Jan 4, 2016
1,482
272
83
35
Thanks for this, always nice to have more reference material for Azure and SharePoint stuff.
 

cesmith9999

Well-Known Member
Mar 26, 2013
1,421
470
83
###############################################################
# Eric Ligmans Amazing Free Microsoft eBook Giveaway
# Largest FREE Microsoft eBook Giveaway! I’m Giving Away MILLIONS of FREE Microsoft eBooks again, including: Windows 10, Office 365, Office 2016, Power BI, Azure, Windows 8.1, Office 2013, SharePoint 2016, SharePoint 2013, Dynamics CRM, PowerShell, Exchange Server, System Center, Cloud, SQL Server and more!
# Link to download list of eBooks
# http://ligman.me/2sZVmcG
# Thanks David Crosby for the template (David Crosby's Profile)
###############################################################
$dest = "C:\Downloads\ebooks\"

# Download the source list of books
$downLoadList = "http://ligman.me/2sZVmcG"
$bookList = Invoke-WebRequest $downLoadList

# Convert the list to an array
[string[]]$books = ""
$books = $bookList.Content.Split("`n")
# Remove the first line - it's not a book
$books = $books[1..($books.Length -1)]
$books # Here's the list

# Download the books
foreach ($book in $books) {
$hdr = Invoke-WebRequest $book -Method Head
$title = $hdr.BaseResponse.ResponseUri.Segments[-1]
$title = [uri]::UnescapeDataString($title)
$saveTo = $dest + $title
Invoke-WebRequest $book -OutFile $saveTo
}

the download all from the site...
 
  • Like
Reactions: mmo

dragonme

Active Member
Apr 12, 2016
282
25
28
anyone do a viruscan and anylize this for trojans and other penetration attacks.. .sounds like a honeypot...
 

Evan

Well-Known Member
Jan 6, 2016
3,346
598
113
anyone do a viruscan and anylize this for trojans and other penetration attacks.. .sounds like a honeypot...
Not hits at all from bluecoat, fortinet, and a couple of local scan engines + the server virus scan. I am pretty sure they are safe ;)
It's just Microsoft and partners giving some books away as a promotional tool really. You will note that they are not all new books, some are for say 2013 versions of software and not the latest 2016 versions.
 
  • Like
Reactions: T_Minus