Created
November 13, 2019 09:21
-
-
Save thluiz/e4766043658b57b5288f49e487d3eea1 to your computer and use it in GitHub Desktop.
Powershell script for download images in a range
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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