mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-15 03:39:02 +08:00
5 lines
311 B
PowerShell
5 lines
311 B
PowerShell
$azcopyZipPath = "$PSScriptRoot\azcopyv10.zip"
|
|
& curl.exe -L -o $azcopyZipPath 'https://azcopyvnext.azureedge.net/releases/release-10.24.0-20240326/azcopy_windows_amd64_10.24.0.zip'
|
|
Expand-Archive -LiteralPath $azcopyZipPath -DestinationPath $env:PROGRAMFILES
|
|
Remove-Item -LiteralPath $azcopyZipPath -Force
|