Skip to content

Instantly share code, notes, and snippets.

@ChrisStro
ChrisStro / Get-FileFromWeb.ps1
Last active June 25, 2025 16:59
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
)