Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Import-Module BitsTransfer
- foreach($line in Get-Content .\plik.txt){
- if($line){
- $arr = $line.Split("|")
- Write-Host $arr[0]
- $url = $arr[1]
- $output = $arr[0]
- Start-BitsTransfer -Source $url -Destination $output
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment