×
Search results provided by Azure Search - read how I built it in this post.
Max Melcher

1 minute read

Attended SPC14 in Las Vegas and want to download all slides? Here we go with a really simple solution – it only takes some times and roughly 100 clicks. Kudos to Sahil Malik for the script.

6 easy steps to download all SPC14 session slides

  1. Open SPC14 Yammer: https://www.yammer.com/sharepointconference/groups/company/uploaded_files

  2. Filter on Documents:

image

Filter on Documents to remove unwanted files

  1. Scroll down and click on “More” until all elements are visible:
image

Scroll down and click on more - repeat until all files are visible.

  1. Open Developer Tools (F12)

  2. Paste in this script and execute:

jQuery.each(jQuery('[href^="https://www.yammer.com/sharepointconference/uploaded_files/"]'), function (index, elem) {
window.open(elem.href.replace('sharepointconference', '/api/v1') + '/download');
});

If there is a popup warning allow them always and rerun the script.

_2014-03-12_10-40-06

  1. Click on save until all files are downloaded.

Other options

I tried to create a console application to authenticate and download files – but that was so much pain that I went for the not so comfortable JavaScript variant. If you have improvements to this - leave a comment!

comments powered by Disqus