mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-19 08:57:51 +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.23.0-20240129/azcopy_windows_amd64_10.23.0.zip'
|
||
|
Expand-Archive -LiteralPath $azcopyZipPath -DestinationPath $env:PROGRAMFILES
|
||
|
Remove-Item -LiteralPath $azcopyZipPath -Force
|