2

I was using a downloader manager, but recently discovered it contains some potentially dangerous modules.

One of the features available was the ability to import a list of files from a text file to download multiple files simultaneously, but now I need to remove that download manager.

Are there some other download managers, or other ways, I can achieve this?

Jawa
  • 3,679

1 Answers1

0

You're better off using a more permanent solution to the issue, by say, using PowerShell to get a list of download items and then send this to whatever download manager you want to use.

  1. Start Windows Powershell with Win + R, then enter powershell.

  2. Run the following snippet with appropriate adjustments.

    Get-Content C:\path\to\file.txt | ForEach-Object { Start-Process "C:\path\to\download-manager.exe" -ArgumentList $_ }

The above line assumes that you have a text-file where every download is on its own line.

Thor
  • 4,043