Skip to content

Instantly share code, notes, and snippets.

@thluiz
Created November 13, 2019 09:21
Show Gist options
  • Save thluiz/e4766043658b57b5288f49e487d3eea1 to your computer and use it in GitHub Desktop.
Save thluiz/e4766043658b57b5288f49e487d3eea1 to your computer and use it in GitHub Desktop.
Powershell script for download images in a range
$wc = New-Object System.Net.WebClient
For ($i=1; $i -le 100; $i++) {
$url = "https://membros.myvtmi.im/qrcode/http/cerimonias.myvtmi.im/cerimonia-$i"
$wc.DownloadFile($url, "c:\tmp\cerimonia-$i.png")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment