File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -303,15 +303,15 @@ wget -O azcopy_v10.tar.gz https://aka.ms/downloadazcopy-v10-linux && tar -xf azc
303
303
` ` `
304
304
** Windows PowerShell**
305
305
` ` ` PowerShell
306
- Invoke-WebRequest -Uri ' https://azcopyvnext.azureedge.net/release20220315/azcopy_windows_amd64_10.14.1.zip ' -OutFile ' azcopyv10.zip'
306
+ Invoke-WebRequest -Uri < URL from the previous command > -OutFile ' azcopyv10.zip'
307
307
Expand-archive -Path ' .\azcopyv10.zip' -Destinationpath ' .\'
308
308
$AzCopy = (Get-ChildItem -path ' .\' -Recurse -File -Filter ' azcopy.exe' ).FullName
309
309
# Invoke AzCopy
310
310
& $AzCopy
311
311
` ` `
312
312
** PowerShell 6.1+**
313
313
` ` ` PowerShell
314
- Invoke-WebRequest -Uri ' https://azcopyvnext.azureedge.net/release20220315/azcopy_windows_amd64_10.14.1.zip ' -OutFile ' azcopyv10.zip'
314
+ Invoke-WebRequest -Uri < URL from the previous command > -OutFile ' azcopyv10.zip'
315
315
$AzCopy = (Expand-archive -Path ' .\azcopyv10.zip' -Destinationpath ' .\' -PassThru | where-object {$_ .Name -eq ' azcopy.exe' }).FullName
316
316
# Invoke AzCopy
317
317
& $AzCopy
You can’t perform that action at this time.
0 commit comments