PowerShell PowerShell $i=1 (Invoke-WebRequest 'https://www.google.es/search?q=powershell&tbm=isch' | select -expand images | select -expand src) | %{ $name="imagen"+$i+".jpg" Start-BitsTransfer -Source $_ -Destination F:\power\$name $i++ } 123456 $i=1(Invoke-WebRequest 'https://www.google.es/search?q=powershell&tbm=isch' | select -expand images | select -expand src) | %{$name="imagen"+$i+".jpg"Start-BitsTransfer -Source $_ -Destination F:\power\$name$i++}