Skip to content

Commit 11ba7fc

Browse files
Merge pull request #292901 from schoag-msft/docs-editor/storage-use-azcopy-v10-1736531151
Update storage-use-azcopy-v10.md
2 parents 3dc1d50 + 4773c8b commit 11ba7fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/storage/common/storage-use-azcopy-v10.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,15 +303,15 @@ wget -O azcopy_v10.tar.gz https://aka.ms/downloadazcopy-v10-linux && tar -xf azc
303303
```
304304
**Windows PowerShell**
305305
```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'
307307
Expand-archive -Path '.\azcopyv10.zip' -Destinationpath '.\'
308308
$AzCopy = (Get-ChildItem -path '.\' -Recurse -File -Filter 'azcopy.exe').FullName
309309
# Invoke AzCopy
310310
& $AzCopy
311311
```
312312
**PowerShell 6.1+**
313313
```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'
315315
$AzCopy = (Expand-archive -Path '.\azcopyv10.zip' -Destinationpath '.\' -PassThru | where-object {$_.Name -eq 'azcopy.exe'}).FullName
316316
# Invoke AzCopy
317317
& $AzCopy

0 commit comments

Comments
 (0)