Skip to content

Instantly share code, notes, and snippets.

@ChrisStro
ChrisStro / Get-FileFromWeb.ps1
Last active June 3, 2025 11:21
Get-FileFromWeb | Function to show download progress in powershell
function Get-FileFromWeb {
param (
# Parameter help description
[Parameter(Mandatory)]
[string]$URL,
# Parameter help description
[Parameter(Mandatory)]
[string]$File
)