Skip to content

Instantly share code, notes, and snippets.

@ChrisStro
ChrisStro / Get-FileFromWeb.ps1
Last active May 18, 2025 15:33
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
)