Skip to content

Commit 969b054

Browse files
authored
Merge pull request #97445 from genlin/master211
Fixes cusomter issues
2 parents 199d282 + 77d634d commit 969b054

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

articles/virtual-machines/windows/prepare-for-upload-vhd-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ Make sure the VM is healthy, secure, and RDP accessible:
353353
12. Uninstall any other third-party software or driver that's related to physical components or any other virtualization technology.
354354
355355
### Install Windows updates
356-
Ideally, you should keep the machine updated at the *patch level*. If this isn't possible, make sure the following updates are installed:
356+
Ideally, you should keep the machine updated at the *patch level*. If this isn't possible, make sure the following updates are installed. To get the latest updates, see the Windows update history pages: [Windows 10 and Windows Server 2019](https://support.microsoft.com/help/4000825), [Windows 8.1 and Windows Server 2012 R2](https://support.microsoft.com/help/4009470) and [Windows 7 SP1 and Windows Server 2008 R2 SP1](https://support.microsoft.com/help/4009469).
357357
358358
| Component | Binary | Windows 7 SP1, Windows Server 2008 R2 SP1 | Windows 8, Windows Server 2012 | Windows 8.1, Windows Server 2012 R2 | Windows 10 v1607, Windows Server 2016 v1607 | Windows 10 v1703 | Windows 10 v1709, Windows Server 2016 v1709 | Windows 10 v1803, Windows Server 2016 v1803 |
359359
|-------------------------|----------------|-------------------------------------------|---------------------------------------------|------------------------------------|---------------------------------------------------------|----------------------------|-------------------------------------------------|-------------------------------------------------|

articles/virtual-network/virtual-networks-create-nsg-classic-ps.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.devlang: na
1414
ms.topic: article
1515
ms.tgt_pltfrm: na
1616
ms.workload: infrastructure-services
17-
ms.date: 02/02/2016
17+
ms.date: 2/02/2019
1818
ms.author: genli
1919

2020
---
@@ -61,7 +61,13 @@ The sample PowerShell commands below expect a simple environment already created
6161
-SourceAddressPrefix Internet -SourcePortRange '*' `
6262
-DestinationAddressPrefix '*' -DestinationPortRange '80'
6363
```
64+
5. Associate the network security group to a subnet:
6465
66+
```powershell
67+
Get-AzureNetworkSecurityGroup -Name "NSG-Frontend" `
68+
| Set-AzureNetworkSecurityGroupToSubnet -VirtualNetworkName "TestVNet" `
69+
-Subnet "FrontEnd"
70+
```
6571
## Create an NSG for the back-end subnet
6672
6773
1. Create a network security group named *NSG-BackEnd*:
@@ -89,4 +95,10 @@ The sample PowerShell commands below expect a simple environment already created
8995
-Action Deny -Protocol '*' -Type Outbound -Priority 200 `
9096
-SourceAddressPrefix '*' -SourcePortRange '*' `
9197
-DestinationAddressPrefix Internet -DestinationPortRange '*'
92-
```
98+
```
99+
4. Associate the network security group to a subnet:
100+
```powershell
101+
Get-AzureNetworkSecurityGroup -Name "NSG-Backend" `
102+
| Set-AzureNetworkSecurityGroupToSubnet -VirtualNetworkName "TestVNet" `
103+
-Subnet "BackEnd"
104+
```

0 commit comments

Comments
 (0)