Skip to content

Commit 6b052b0

Browse files
Merge pull request #268189 from halkazwini/nw-azurerm
Remove the AzureRM note
2 parents cc4a076 + fdbc490 commit 6b052b0

8 files changed

+3
-24
lines changed

articles/network-watcher/diagnose-vm-network-routing-problem-powershell.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ In this article, you deploy a virtual machine (VM), and then check communication
1919

2020
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
2121

22-
[!INCLUDE [updated-for-az](../../includes/updated-for-az.md)]
23-
2422
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
2523

2624
If you choose to install and use PowerShell locally, this article requires the Azure PowerShell `Az` module. To find the installed version, run `Get-Module -ListAvailable Az`. If you need to upgrade, see [Install Azure PowerShell module](/powershell/azure/install-azure-powershell). If you are running PowerShell locally, you also need to run `Connect-AzAccount` to create a connection with Azure.

articles/network-watcher/network-watcher-alert-triggered-packet-capture.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ Resources that are deployed in Azure run continuously. It's difficult to activel
1919

2020
By using Network Watcher alerts and functions from within the Azure ecosystem, you can proactively respond with the data and tools to solve problems in your network.
2121

22-
[!INCLUDE [updated-for-az](../../includes/updated-for-az.md)]
23-
2422
## Prerequisites
2523

2624
- The latest version of [Azure PowerShell](/powershell/azure/install-azure-powershell).

articles/network-watcher/network-watcher-connectivity-powershell.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ ms.custom: devx-track-azurepowershell
2121
2222
Learn how to use connection troubleshoot to verify whether a direct TCP connection from a virtual machine to a given endpoint can be established.
2323

24-
25-
[!INCLUDE [updated-for-az](../../includes/updated-for-az.md)]
26-
2724
## Before you begin
2825

2926
* An instance of Network Watcher in the region you want to troubleshoot a connection.

articles/network-watcher/network-watcher-nsg-auditing-powershell.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ Customers are often faced with the challenge of verifying the security posture o
2020

2121
To learn more about network security groups, see [Network security groups overview](../virtual-network/network-security-groups-overview.md).
2222

23-
[!INCLUDE [updated-for-az](../../includes/updated-for-az.md)]
24-
2523
## Prerequisites
2624

2725
- If you don't have an Azure account with an active subscription, [create one for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ This article takes you through the different management tasks that are currently
2727
- [**Delete a packet capture**](#delete-a-packet-capture)
2828
- [**Download a packet capture**](#download-a-packet-capture)
2929

30-
31-
[!INCLUDE [updated-for-az](../../includes/updated-for-az.md)]
32-
3330
## Before you begin
3431

3532
This article assumes you have the following resources:

articles/network-watcher/network-watcher-read-nsg-flow-logs.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,9 @@ Learn how to read NSG flow logs entries with PowerShell.
1616

1717
NSG flow logs are stored in a storage account in [block blobs](/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs). Block blobs are made up of smaller blocks. Each log is a separate block blob that is generated every hour. New logs are generated every hour, the logs are updated with new entries every few minutes with the latest data. In this article you learn how to read portions of the flow logs.
1818

19-
20-
[!INCLUDE [updated-for-az](../../includes/updated-for-az.md)]
21-
2219
## Scenario
2320

24-
In the following scenario, you have an example flow log that is stored in a storage account. You learn how to selectively read the latest events in NSG flow logs. In this article you use PowerShell, however, the concepts discussed in the article are not limited to the programming language, and are applicable to all languages supported by the Azure Storage APIs.
21+
In the following scenario, you have an example flow log that is stored in a storage account. You learn how to selectively read the latest events in NSG flow logs. In this article you use PowerShell, however, the concepts discussed in the article aren't limited to the programming language, and are applicable to all languages supported by the Azure Storage APIs.
2522

2623
## Setup
2724

@@ -150,7 +147,7 @@ function Get-NSGFlowLogReadBlock {
150147
$valuearray = Get-NSGFlowLogReadBlock -blockList $blockList -CloudBlockBlob $CloudBlockBlob
151148
```
152149

153-
Now the `$valuearray` array contains the string value of each block. To verify the entry, get the second to the last value from the array by running `$valuearray[$valuearray.Length-2]`. You do not want the last value, because it is the closing bracket.
150+
Now the `$valuearray` array contains the string value of each block. To verify the entry, get the second to the last value from the array by running `$valuearray[$valuearray.Length-2]`. You don't want the last value, because it's the closing bracket.
154151

155152
The results of this value are shown in the following example:
156153

@@ -174,7 +171,7 @@ A","1497646742,10.0.0.4,168.62.32.14,44942,443,T,O,A","1497646742,10.0.0.4,52.24
174171
}
175172
```
176173

177-
This scenario is an example of how to read entries in NSG flow logs without having to parse the entire log. You can read new entries in the log as they are written by using the block ID or by tracking the length of blocks stored in the block blob. This allows you to read only the new entries.
174+
This scenario is an example of how to read entries in NSG flow logs without having to parse the entire log. You can read new entries in the log as they're written by using the block ID or by tracking the length of blocks stored in the block blob. This allows you to read only the new entries.
178175

179176
## Next steps
180177

articles/network-watcher/network-watcher-security-group-view-powershell.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ ms.custom: devx-track-azurepowershell, engagement-fy23
1818
1919
Security group view returns configured and effective network security rules that are applied to a virtual machine. This capability is useful to audit and diagnose Network Security Groups and rules that are configured on a VM to ensure traffic is being correctly allowed or denied. In this article, we show you how to retrieve the configured and effective security rules to a virtual machine using PowerShell
2020

21-
22-
[!INCLUDE [updated-for-az](../../includes/updated-for-az.md)]
23-
2421
## Before you begin
2522

2623
In this scenario, you run the `Get-AzNetworkWatcherSecurityGroupView` cmdlet to retrieve the security rule information.

articles/network-watcher/view-relative-latencies.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ ms.custom: devx-track-azurepowershell, engagement-fy23
2020
2121
In this tutorial, learn how to use the Azure [Network Watcher](network-watcher-monitoring-overview.md) service to help you decide what Azure region to deploy your application or service in, based on your user demographic. Additionally, you can use it to help evaluate service providers' connections to Azure.
2222

23-
24-
[!INCLUDE [updated-for-az](../../includes/updated-for-az.md)]
25-
2623
## Create a network watcher
2724

2825
If you already have a network watcher in at least one Azure [region](https://azure.microsoft.com/regions), you can skip the tasks in this section. Create a resource group for the network watcher. In this example, the resource group is created in the East US region, but you can create the resource group in any Azure region.

0 commit comments

Comments
 (0)