RJSN

Download-Ignite2018Presentations

Sep 28th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <#
  2.         .NOTES
  3.         #------------------------------------------------------------------------------------------------------------
  4.         # Date              : 28-09-2018
  5.         # Script name       : Download-Ignite2018Presentations.ps1
  6.         # Description       : Downloads the Microsoft Ignite 2018 Break-Out and Theater session presentations
  7.         #
  8.         # Created by        : Ralph Jansen
  9.         # Extra module      :
  10.         # Copyright         : ©2018, all rights reserved.
  11.         # History           : RJA 28-09-2018 Initial version
  12.         #
  13.         #------------------------------------------------------------------------------------------------------------
  14.        
  15.         .DESCRIPTION
  16.         Downloads the Microsoft Ignite 2018 Break-Out and Theater session presentations
  17.  
  18.         .EXAMPLE
  19.         .\Download-Ignite2018Presentations.ps1 C:\Users\Pete\Downloads\Ignite
  20.        
  21. #>
  22.  
  23.  
  24. param($downloadlocation)
  25. $ErrorActionPreference = "SilentlyContinue"
  26.  
  27. for ($x = 0; $x -lt 10000; $x += 1)
  28. {
  29.     "Processing https://mediusprodstatic.studios.ms/presentations/Ignite2018/BRK$x.pptx"
  30.     Invoke-WebRequest -Uri "https://mediusprodstatic.studios.ms/presentations/Ignite2018/BRK$x.pptx" -OutFile "$downloadlocation\BRK$x.pptx"
  31.  
  32.    
  33.     "Processing https://mediusprodstatic.studios.ms/presentations/Ignite2018/THR$x.pptx"
  34.     Invoke-WebRequest -Uri "https://mediusprodstatic.studios.ms/presentations/Ignite2018/THR$x.pptx" -OutFile "$downloadlocation\THR$x.pptx"
  35.  
  36. }
Add Comment
Please, Sign In to add comment