Skip to content

Commit 880443c

Browse files
authored
Merge pull request #18076 from LouisBerner/v-loberner-ado-430081-22h2-delete-source-articles-2
Created new include file, added it to two articles.
2 parents 84e614e + 56100c2 commit 880443c

File tree

3 files changed

+32
-4
lines changed

3 files changed

+32
-4
lines changed

azure-local/deploy/sdn-express-23h2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Deploy an SDN infrastructure using SDN Express for Azure Local, version 2
33
description: Learn to deploy an SDN infrastructure using SDN Express for Azure Local, version 23h2.
44
author: alkohli
55
ms.topic: how-to
6-
ms.date: 04/22/2025
6+
ms.date: 05/29/2025
77
ms.author: alkohli
88
ms.reviewer: anirbanpaul
99
---
@@ -45,7 +45,7 @@ The following requirements must be met for a successful SDN deployment:
4545

4646
## Download the VHDX file
4747

48-
[!INCLUDE [download-vhdx](../includes/hci-download-vhdx.md)]
48+
[!INCLUDE [download-vhdx](../includes/hci-download-vhdx-2.md)]
4949

5050
## Install the SDN Express PowerShell module
5151

azure-local/deploy/sdn-wizard-23h2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Deploy SDN using Windows Admin Center for Azure Local
33
description: Learn how to deploy an SDN infrastructure using Windows Admin Center for Azure Local
44
author: alkohli
55
ms.topic: how-to
6-
ms.date: 02/20/2025
6+
ms.date: 05/29/2025
77
ms.author: alkohli
88
ms.reviewer: anirbanpaul
99
---
@@ -49,7 +49,7 @@ The following requirements must be met for a successful SDN deployment:
4949

5050
## Download the VHDX file
5151

52-
[!INCLUDE [download-vhdx](../includes/hci-download-vhdx.md)]
52+
[!INCLUDE [download-vhdx](../includes/hci-download-vhdx-2.md)]
5353

5454
## Deploy SDN Network Controller
5555

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
author: alkohli
3+
ms.author: alkohli
4+
ms.service: azure-local
5+
ms.topic: include
6+
ms.date: 05/29/2025
7+
---
8+
9+
SDN uses a VHDX file containing either the Azure Stack HCI or Windows Server operating system (OS) as a source for creating the SDN virtual machines (VMs).
10+
11+
> [!NOTE]
12+
> The version of the OS in your VHDX must match the version used by the Azure Local Hyper-V machines. This VHDX file is used by all SDN infrastructure components.
13+
14+
[Download an English-language version of the VHDX file](https://aka.ms/PVvxVBVCVVC).
15+
16+
Currently, a non-English VHDX file isn't available for download. If you require a non-English version, [download the corresponding ISO file](../deploy/download-23h2-software.md) and convert it to VHDX using the `Convert-WindowsImage` cmdlet. You must run this script from a Windows client computer. You'll probably need to run this script as Administrator and modify the execution policy for scripts using the `Set-ExecutionPolicy` command.
17+
18+
The following syntax shows an example of using `Convert-WindowsImage`:
19+
20+
```powershell
21+
Install-Module -Name Convert-WindowsImage
22+
Import-Module Convert-WindowsImage
23+
24+
$wimpath = "E:\sources\install.wim"
25+
$vhdpath = "D:\temp\AzureStackHCI.vhdx"
26+
$edition=1
27+
Convert-WindowsImage -SourcePath $wimpath -Edition $edition -VHDPath $vhdpath -SizeBytes 500GB -DiskLayout UEFI
28+
```

0 commit comments

Comments
 (0)