tonyrulez

nCore bulk download

Jan 3rd, 2022
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $URLS = "path\to\urls.txt"
  2. $TORR = "path\to\folder\"
  3. $TGUI = "path\to\transgui.exe"
  4.  
  5. $wsh = New-Object -ComObject Wscript.Shell
  6. $wsh.Popup("Copy all links from nCore Activity page then press OK")
  7.  
  8. Clear-Content $URLS
  9. Get-Clipboard > $URLS
  10. (Get-Content $URLS) -replace 'details', 'download' | Out-File -encoding ASCII $URLS
  11. (Get-Content $URLS) -replace '$', '&key=passkey' | Out-File -encoding ASCII $URLS
  12.  
  13. aria2c --follow-torrent=false --input-file=$URLS --dir=$TORR --disable-ipv6
  14.  
  15. explorer $TORR
  16. start-process $TGUI
Add Comment
Please, Sign In to add comment