Skip to content

Commit 649b765

Browse files
authored
Merge pull request #107250 from genlin/master211
add new step
2 parents 97444f9 + c753807 commit 649b765

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

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

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,13 @@ Make sure the following settings are configured correctly for remote access:
264264
```PowerShell
265265
Set-NetFirewallRule -DisplayName "File and Printer Sharing (Echo Request - ICMPv4-In)" -Enabled True
266266
```
267-
5. If the VM will be part of a domain, check the following Azure AD policies to make sure the former settings aren't reverted.
267+
5. Create a rule for the Azure platform network:
268+
269+
```PowerShell
270+
New-NetFirewallRule -DisplayName "AzurePlatform" -Direction Inbound -RemoteAddress 168.63.129.16 -Profile Any -Action Allow -EdgeTraversalPolicy Allow
271+
New-NetFirewallRule -DisplayName "AzurePlatform" -Direction Outbound -RemoteAddress 168.63.129.16 -Profile Any -Action Allow
272+
```
273+
6. If the VM will be part of a domain, check the following Azure AD policies to make sure the former settings aren't reverted.
268274

269275
| Goal | Policy | Value |
270276
|--------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------|
@@ -421,7 +427,7 @@ System Preparation Tool (Sysprep) is a process you can run to reset a Windows in
421427
422428
You typically run Sysprep to create a template from which you can deploy several other VMs that have a specific configuration. The template is called a *generalized image*.
423429
424-
If you want to create only one VM from one disk, you dont have to use Sysprep. Instead, you can create the VM from a *specialized image*. For information about how to create a VM from a specialized disk, see:
430+
If you want to create only one VM from one disk, you don't have to use Sysprep. Instead, you can create the VM from a *specialized image*. For information about how to create a VM from a specialized disk, see:
425431
426432
- [Create a VM from a specialized disk](create-vm-specialized.md)
427433
- [Create a VM from a specialized VHD disk](https://docs.microsoft.com/azure/virtual-machines/windows/create-vm-specialized-portal?branch=master)

0 commit comments

Comments
 (0)