Home  >  Article  >  Computer Tutorials  >  Guide on How to Download Files Using PowerShell on Windows

Guide on How to Download Files Using PowerShell on Windows

DDD
DDDOriginal
2024-11-12 14:16:02420browse

Do you need to download files from the web but hate repeatedly clicking links? PowerShell is a powerful command-line shell that allows you to perform all kinds of management tasks automatically. So, it’s useful and necessary to learn how to download files using PowerShell with the following methods on MiniTool.

Why Use PowerShell to Download Files

When you download files, do you download them by clicking each of them manually? That’s a tedious way. In this article, you will learn how to use PowerShell to download files from command line quickly. There are some benefits of using PowerShell to download files.

  • Firstly, unlike before, it will save a lot of time because you can download numerous files at once without clicking each link manually.                    
  • Secondly, it will improve your files and computer safety because it allows you to authenticate with websites that require login credentials to access files.
  • Finally, the PowerShell is scriptable, which means you can write a script to automatically download files on a schedule.

What You Should Do Before Downloading

Before starting to download files, you need to meet the minimum system and PowerShell version requirements to make sure you can download a file with PowerShell successfully.

For the device, you should preferably use a computer with Windows 10 or later. For Windows PowerShell, PowerShell 5.1 or PowerShell 7.1 is recommended. For your information, Windows 10 already includes Windows PowerShell 5.1.

How to Download Files Using Windows PowerShell

Regardless of which methods you use, the underlying logic and components are the same. You need an original URL that points to the file location and a target path that will be used to store the downloaded files. In addition, you may be asked to offer the credential if the Web server needs it. Here are the specific ways on how to download files using PowerShell.

Tips:
For the commands in every method, you need to know that https://example.com/file.zip means the file link and C:PathToSavefile.zip means the location where you want to store the file.

Method 1: Download Files With Invoke-WebRequest

The initial method of downloading files in PowerShell is to use the Invoke-WebRequest cmdlet. This cmdlet is probably the most commonly used in this context and is able to download files from HTTP, HTTPS, and FTP links. The operations are as follows.

Step 1: Right-click on the Start button and choose Windows PowerShell to open it.

Step 2: Input the following command in the window and press Enter.

Invoke-WebRequest -Uri “https://example.com/file.zip” -OutFile “C:PathToSavefile.zip”

Method 2: Download Files With Start-BitsTransfer

Start-BitsTransfer is designed for transferring files between client and server computers. This PowerShell cmdlet requires BITS to run. Here is a way.

Step 1: Press the Win S keys to open the Search box, type Windows PowerShell, and press Enter.

Step 2: Type the command below and press Enter:

Start-BitsTransfer -Source “https://example.com/file.zip” -Destination “C:PathToSavefile.zip”

Guide on How to Download Files Using PowerShell on Windows

Method 3: Download Files With Curl

The curl tool is familiar to you if you usually use the command-line approach. It can be used to download files from the Internet or server quickly and effectively without the browser. Here is how you can use it.

Step 1: Open the Run dialog by pressing the Win R keys, type PowerShell in the Open box, and press the Shift Ctrl Enter keys.

Step 2: Input the following command in the window and hit Enter.

curl -o “C:PathToSavefile.zip” https://example.com/file.zip

Read Also: 5 Methods to Fix Windows PowerShell High CPU Usage

Method 4: Download Files With Wget

This is the quickest and simplest way to help you download files with PowerShell. Work with the following steps.

Step 1: Open the elevated Windows PowerShell.

Step 2: Type the following command in the window and press Enter.

wget https://example.com/file.zip -OutFile “C:PathToSavefile.zip”

Method 5: Download Files With Certutil

When you need to download files but there are no other tools, you can use the certutil tool in PowerShell to download files. Here are the steps.

Step 1: Open Windows PowerShell.

Step 2: Type the following command in the window and press Enter:

certutil -urlcache -split -f “https://example.com/file.zip” “C:PathToSavefile.zip”

The commands listed above cover all the steps needed to download files using PowerShell. It’s crucial to input the accurate file source and destination path during the process to ensure a successful download.

Tips:
Data loss is common in our daily life. If you encounter this problem when you use PowerShell to download files, you can recover them with the help of MiniTool Power Data Recovery. This reliable and free data recovery software can restore almost all types of files that are lost due to accidental deletion, virus attacks, and so on. It supports restoring 1 GB of files for free.

Final Words

This post introduces the benefits of using PowerShell to download files, what you should do before downloading files, and how to download files using PowerShell with different commands. With these commands in your toolkit, downloading files in PowerShell can be easy. Hope they can help you.

The above is the detailed content of Guide on How to Download Files Using PowerShell on Windows. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn