Skip to content

Commit 2439954

Browse files
committed
tweaks
1 parent a271e71 commit 2439954

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/network-watcher/packet-capture-manage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ az network watcher packet-capture create --name 'myVM_1' --resource-group 'myRes
160160
```
161161

162162
> [!NOTE]
163-
> If the storage account is in a different resource group than the virtual machine, use its full resource ID instead of the name: `/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/myResourceGroup2/providers/Microsoft.Storage/storageAccounts/mystorageaccount`.
163+
> If the storage account is in a different resource group than the virtual machine, use the full resource ID of the storage account instead of its name: `/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/myResourceGroup2/providers/Microsoft.Storage/storageAccounts/mystorageaccount`.
164164
165165
---
166166

@@ -292,7 +292,7 @@ To download a packet capture from Azure storage to the local disk, use [Get-AzSt
292292

293293
```azurepowershell-interactive
294294
# Download the packet capture file from Azure storage container.
295-
Get-AzStorageBlobContent -Container 'network-watcher-logs' -Blob 'subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourcegroups/myresourcegroup/providers/microsoft.compute/virtualmachines/myvm/2024/01/25/packetcapture_22_44_54_342.cap' -Destination 'C:\Capture\myVM_1.cap'
295+
Get-AzStorageBlobContent -Container 'network-watcher-logs' -Blob '/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourcegroups/myresourcegroup/providers/microsoft.compute/virtualmachines/myvm/2024/01/25/packetcapture_22_44_54_342.cap' -Destination 'C:\Capture\myVM_1.cap'
296296
```
297297

298298
> [!NOTE]
@@ -312,7 +312,7 @@ To download a packet capture from Azure storage to the local disk, use [az stora
312312

313313
```azurecli-interactive
314314
# Download the packet capture file from Azure storage container.
315-
az storage blob download --container-name 'network-watcher-logs' --blob-url 'subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourcegroups/myresourcegroup/providers/microsoft.compute/virtualmachines/myvm/2024/01/25/packetcapture_22_44_54_342.cap' --file 'C:\Capture\myVM_1.cap'
315+
az storage blob download --container-name 'network-watcher-logs' --blob-url '/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourcegroups/myresourcegroup/providers/microsoft.compute/virtualmachines/myvm/2024/01/25/packetcapture_22_44_54_342.cap' --file 'C:\Capture\myVM_1.cap'
316316
```
317317

318318
> [!NOTE]

0 commit comments

Comments
 (0)