Skip to content

Commit 89c5076

Browse files
committed
Merge branch 'release-local-2506' of https://github.com/MicrosoftDocs/azure-stack-docs-pr into 6b-sec-updates-2506
2 parents 3ad175a + 4c1d067 commit 89c5076

22 files changed

+684
-294
lines changed

.openpublishing.redirection.json

Lines changed: 56 additions & 56 deletions
Large diffs are not rendered by default.

azure-local/TOC.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -186,17 +186,21 @@ items:
186186
items:
187187
- name: About Azure Local upgrades
188188
href: upgrade/about-upgrades-23h2.md
189-
- name: 1. Upgrade to version 23H2 OS
189+
- name: 1. Select upgrade path
190190
items:
191-
- name: Via PowerShell (recommended)
192-
href: upgrade/upgrade-22h2-to-23h2-powershell.md
193-
- name: Via Windows Admin Center
194-
href: upgrade/upgrade-22h2-to-23h2-windows-admin-center.md
195-
- name: Via other methods
196-
href: upgrade/upgrade-22h2-to-23h2-other-methods.md
191+
- name: Upgrade to 26100.xxxx
192+
href: upgrade/upgrade-to-24h2-powershell.md
193+
- name: Upgrade to 25398.xxxx
194+
items:
195+
- name: Via PowerShell (recommended)
196+
href: upgrade/upgrade-22h2-to-23h2-powershell.md
197+
- name: Via Windows Admin Center
198+
href: upgrade/upgrade-22h2-to-23h2-windows-admin-center.md
199+
- name: Via other methods
200+
href: upgrade/upgrade-22h2-to-23h2-other-methods.md
197201
- name: 2. Perform post-OS upgrade tasks
198202
href: upgrade/post-upgrade-steps.md
199-
- name: 3. Install, enable Network ATC
203+
- name: 3. Configure Network ATC
200204
href: upgrade/install-enable-network-atc.md
201205
- name: 4. Validate solution upgrade readiness
202206
href: upgrade/validate-solution-upgrade-readiness.md

azure-local/concepts/software-defined-networking-23h2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: AnirbanPaul
55
ms.author: anpaul
66
ms.topic: conceptual
77
ms.service: azure-local
8-
ms.date: 05/28/2025
8+
ms.date: 06/03/2025
99
---
1010

1111
# Software Defined Networking (SDN) in Azure Local
@@ -29,7 +29,7 @@ Deploying Network Controller enables the following functionalities:
2929
- Attach virtual appliances to your virtual networks.
3030
- Configure Quality of Service (QoS) policies for VMs attached to virtual networks or traditional VLAN-based networks.
3131

32-
You have the option to deploy an SDN Network Controller using SDN Express PowerShell scripts, or [deploy SDN Network Controller using Windows Admin Center](../deploy/sdn-wizard-23h2.md) after creating a system.
32+
You have the option to [deploy an SDN Network Controller using SDN Express](../manage/sdn-express.md) PowerShell scripts, or [deploy SDN Network Controller using Windows Admin Center](../deploy/sdn-wizard-23h2.md) after creating a system.
3333

3434
## Software Load Balancing
3535

azure-local/includes/azure-local-verify-update.md

Lines changed: 52 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,57 @@ ms.topic: include
66
ms.date: 05/13/2024
77
---
88

9-
## Step 3: Check the status of an update
10-
11-
To get the summary information about an update in progress, run the `Get-CauRun` cmdlet:
12-
13-
```PowerShell
14-
Get-CauRun -ClusterName <SystemName>
15-
```
16-
17-
Here's a sample output: <!--ASK-->
18-
19-
```output
20-
RunId : <Run ID>
21-
RunStartTime : 10/13/2024 1:35:39 PM
22-
CurrentOrchestrator : NODE1
23-
NodeStatusNotifications : {
24-
Node : NODE1
25-
Status : Waiting
26-
Timestamp : 10/13/2024 1:35:49 PM
27-
}
28-
NodeResults : {
29-
Node : NODE2
30-
Status : Succeeded
31-
ErrorRecordData :
32-
NumberOfSucceededUpdates : 0
33-
NumberOfFailedUpdates : 0
34-
InstallResults : Microsoft.ClusterAwareUpdating.UpdateInstallResult[]
35-
}
36-
```
9+
1. To get the summary information about an update in progress, run the `Get-CauRun` cmdlet:
10+
11+
```PowerShell
12+
Get-CauRun -ClusterName <SystemName>
13+
```
14+
15+
Here's a sample output: <!--ASK-->
16+
17+
```output
18+
RunId : <Run ID>
19+
RunStartTime : 10/13/2024 1:35:39 PM
20+
CurrentOrchestrator : NODE1
21+
NodeStatusNotifications : {
22+
Node : NODE1
23+
Status : Waiting
24+
Timestamp : 10/13/2024 1:35:49 PM
25+
}
26+
NodeResults : {
27+
Node : NODE2
28+
Status : Succeeded
29+
ErrorRecordData :
30+
NumberOfSucceededUpdates : 0
31+
NumberOfFailedUpdates : 0
32+
InstallResults : Microsoft.ClusterAwareUpdating.UpdateInstallResult[]
33+
}
34+
```
35+
36+
1. Validate the health of your system by running the `Test-Cluster` cmdlet on one of the machines in the system. If any of the condition checks fail, resolve them before proceeding to the next step.
37+
38+
```powershell
39+
Test-Cluster
40+
```
41+
42+
1. Verify that the registry keys are still applied on each machine in the system before moving to the next step.
43+
44+
To check if the registry key exists:
45+
46+
```powershell
47+
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "RefsEnableMetadataValidation"
48+
```
49+
50+
To reapply the registry keys if needed and reboot each machine for the changes to take effect:
51+
52+
```powershell
53+
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "RefsEnableMetadataValidation" -Value 0 -Type DWord -ErrorAction Stop
54+
```
55+
56+
If the OS upgrade fails, run the following command to recover the CAU run:
57+
58+
```powershell
59+
Invoke-CauRun –ForceRecovery -Force
60+
```
3761
3862
You're now ready to perform the post-OS upgrade steps for your system.

azure-local/known-issues.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Release notes with fixed and known issues in Azure Local
33
description: Read about the known issues and fixed issues in Azure Local.
44
author: alkohli
55
ms.topic: conceptual
6-
ms.date: 05/27/2025
6+
ms.date: 06/03/2025
77
ms.author: alkohli
88
ms.reviewer: alkohli
99
---
@@ -93,6 +93,7 @@ The following table lists the known issues from previous releases:
9393
| Azure Local VM management |Deleting a network interface on an Azure Local VM from Azure portal doesn't work in this release.| Use the Azure CLI to first remove the network interface and then delete it. For more information, see [Remove the network interface](/cli/azure/stack-hci-vm/nic#az-stack-hci-vm-nic-remove) and see [Delete the network interface](/cli/azure/stack-hci-vm/network/nic#az-stack-hci-vm-network-nic-delete).|
9494
| Update | When updating the Azure Local instance via the Azure Update Manager, the update progress and results may not be visible in the Azure portal.| To work around this issue, on each node, add the following registry key (no value needed):<br><br>`New-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Services\HciCloudManagementSvc\Parameters" -force`</br><br> Then on one of the nodes, restart the Cloud Management cluster group. </br><br>`Stop-ClusterGroup "Cloud Management"`</br><br>`Start-ClusterGroup "Cloud Management"`</br><br> This won't fully remediate the issue as the progress details may still not be displayed for a duration of the update process. To get the latest update details, you can [Retrieve the update progress with PowerShell](./update/update-via-powershell-23h2.md#step-6-track-update-progress). |
9595
| Update <!--26659432--> |In some cases, `SolutionUpdate` commands could fail if run after the `Send-DiagnosticData` command. | Make sure to close the PowerShell session used for `Send-DiagnosticData`. Open a new PowerShell session and use it for `SolutionUpdate` commands.|
96+
| Security <!-- 56969147 --> | When fixing the compliance for the minimum password length rule, even after you've changed the minimum password length on the Azure Local host to 14, you continue to see it as non-compliant in Azure policy. | You can verify the length of the password using the `net accounts` cmdlet. In the output, find **Minimum password length** to see the value. |
9697

9798
## Known and expected behaviors
9899

@@ -173,6 +174,7 @@ The following table lists the known issues from previous releases:
173174
| Azure Local VM management |Deleting a network interface on an Azure Local VM from Azure portal doesn't work in this release.| Use the Azure CLI to first remove the network interface and then delete it. For more information, see [Remove the network interface](/cli/azure/stack-hci-vm/nic#az-stack-hci-vm-nic-remove) and see [Delete the network interface](/cli/azure/stack-hci-vm/network/nic#az-stack-hci-vm-network-nic-delete).|
174175
| Update | When updating the Azure Local instance via the Azure Update Manager, the update progress and results may not be visible in the Azure portal.| To work around this issue, on each node, add the following registry key (no value needed):<br><br>`New-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Services\HciCloudManagementSvc\Parameters" -force`</br><br> Then on one of the nodes, restart the Cloud Management cluster group. </br><br>`Stop-ClusterGroup "Cloud Management"`</br><br>`Start-ClusterGroup "Cloud Management"`</br><br> This won't fully remediate the issue as the progress details may still not be displayed for a duration of the update process. To get the latest update details, you can [Retrieve the update progress with PowerShell](./update/update-via-powershell-23h2.md#step-6-track-update-progress). |
175176
| Update <!--26659432--> |In some cases, `SolutionUpdate` commands could fail if run after the `Send-DiagnosticData` command. | Make sure to close the PowerShell session used for `Send-DiagnosticData`. Open a new PowerShell session and use it for `SolutionUpdate` commands.|
177+
| Security <!-- 56969147 --> | When fixing the compliance for the minimum password length rule, even after you've changed the minimum password length on the Azure Local host to 14, you continue to see it as non-compliant in Azure policy. | You can verify the length of the password using the `net accounts` cmdlet. In the output, find **Minimum password length** to see the value. |
176178

177179
## Known and expected behaviors
178180

@@ -262,6 +264,7 @@ The following table lists the known issues from previous releases:
262264
| Azure Local VM management |Deleting a network interface on an Azure Local VM from Azure portal doesn't work in this release.| Use the Azure CLI to first remove the network interface and then delete it. For more information, see [Remove the network interface](/cli/azure/stack-hci-vm/nic#az-stack-hci-vm-nic-remove) and see [Delete the network interface](/cli/azure/stack-hci-vm/network/nic#az-stack-hci-vm-network-nic-delete).|
263265
| Update | When updating the Azure Local instance via the Azure Update Manager, the update progress and results may not be visible in the Azure portal.| To work around this issue, on each node, add the following registry key (no value needed):<br><br>`New-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Services\HciCloudManagementSvc\Parameters" -force`</br><br> Then on one of the nodes, restart the Cloud Management cluster group. </br><br>`Stop-ClusterGroup "Cloud Management"`</br><br>`Start-ClusterGroup "Cloud Management"`</br><br> This won't fully remediate the issue as the progress details may still not be displayed for a duration of the update process. To get the latest update details, you can [Retrieve the update progress with PowerShell](./update/update-via-powershell-23h2.md#step-6-track-update-progress). |
264266
| Update <!--26659432--> |In some cases, `SolutionUpdate` commands could fail if run after the `Send-DiagnosticData` command. | Make sure to close the PowerShell session used for `Send-DiagnosticData`. Open a new PowerShell session and use it for `SolutionUpdate` commands.|
267+
| Security <!-- 56969147 --> | When fixing the compliance for the minimum password length rule, even after you've changed the minimum password length on the Azure Local host to 14, you continue to see it as non-compliant in Azure policy. | You can verify the length of the password using the `net accounts` cmdlet. In the output, find **Minimum password length** to see the value. |
265268

266269
::: moniker-end
267270

@@ -312,6 +315,7 @@ The following table lists the known issues from previous releases:
312315
| Azure Local VM management |Deleting a network interface on an Azure Local VM from Azure portal doesn't work in this release.| Use the Azure CLI to first remove the network interface and then delete it. For more information, see [Remove the network interface](/cli/azure/stack-hci-vm/nic#az-stack-hci-vm-nic-remove) and see [Delete the network interface](/cli/azure/stack-hci-vm/network/nic#az-stack-hci-vm-network-nic-delete).|
313316
| Update | When updating the Azure Local instance via the Azure Update Manager, the update progress and results may not be visible in the Azure portal.| To work around this issue, on each node, add the following registry key (no value needed):<br><br>`New-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Services\HciCloudManagementSvc\Parameters" -force`</br><br> Then on one of the nodes, restart the Cloud Management cluster group. </br><br>`Stop-ClusterGroup "Cloud Management"`</br><br>`Start-ClusterGroup "Cloud Management"`</br><br> This won't fully remediate the issue as the progress details may still not be displayed for a duration of the update process. To get the latest update details, you can [Retrieve the update progress with PowerShell](./update/update-via-powershell-23h2.md#step-6-track-update-progress). |
314317
| Update <!--26659432--> |In some cases, `SolutionUpdate` commands could fail if run after the `Send-DiagnosticData` command. | Make sure to close the PowerShell session used for `Send-DiagnosticData`. Open a new PowerShell session and use it for `SolutionUpdate` commands.|
318+
| Security <!-- 56969147 --> | When fixing the compliance for the minimum password length rule, even after you've changed the minimum password length on the Azure Local host to 14, you continue to see it as non-compliant in Azure policy. | You can verify the length of the password using the `net accounts` cmdlet. In the output, find **Minimum password length** to see the value. |
315319

316320
::: moniker-end
317321

@@ -366,6 +370,7 @@ The following table lists the known issues from previous releases:
366370
| Azure Local VM management |Deleting a network interface on an Azure Local VM from Azure portal doesn't work in this release.| Use the Azure CLI to first remove the network interface and then delete it. For more information, see [Remove the network interface](/cli/azure/stack-hci-vm/nic#az-stack-hci-vm-nic-remove) and see [Delete the network interface](/cli/azure/stack-hci-vm/network/nic#az-stack-hci-vm-network-nic-delete).|
367371
| Update | When updating the Azure Local instance via the Azure Update Manager, the update progress and results may not be visible in the Azure portal.| To work around this issue, on each node, add the following registry key (no value needed):<br><br>`New-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Services\HciCloudManagementSvc\Parameters" -force`</br><br> Then on one of the nodes, restart the Cloud Management cluster group. </br><br>`Stop-ClusterGroup "Cloud Management"`</br><br>`Start-ClusterGroup "Cloud Management"`</br><br> This won't fully remediate the issue as the progress details may still not be displayed for a duration of the update process. To get the latest update details, you can [Retrieve the update progress with PowerShell](./update/update-via-powershell-23h2.md#step-6-track-update-progress). |
368372
| Update <!--26659432--> |In some cases, `SolutionUpdate` commands could fail if run after the `Send-DiagnosticData` command. | Make sure to close the PowerShell session used for `Send-DiagnosticData`. Open a new PowerShell session and use it for `SolutionUpdate` commands.|
373+
| Security <!-- 56969147 --> | When fixing the compliance for the minimum password length rule, even after you've changed the minimum password length on the Azure Local host to 14, you continue to see it as non-compliant in Azure policy. | You can verify the length of the password using the `net accounts` cmdlet. In the output, find **Minimum password length** to see the value. |
369374

370375
::: moniker-end
371376

@@ -425,6 +430,7 @@ The following table lists the known issues from previous releases:
425430
| Azure Local VM management |Deleting a network interface on an Azure Local VM from Azure portal doesn't work in this release.| Use the Azure CLI to first remove the network interface and then delete it. For more information, see [Remove the network interface](/cli/azure/stack-hci-vm/nic#az-stack-hci-vm-nic-remove) and see [Delete the network interface](/cli/azure/stack-hci-vm/network/nic#az-stack-hci-vm-network-nic-delete).|
426431
| Update | When updating the Azure Local instance via the Azure Update Manager, the update progress and results may not be visible in the Azure portal.| To work around this issue, on each node, add the following registry key (no value needed):<br><br>`New-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Services\HciCloudManagementSvc\Parameters" -force`</br><br> Then on one of the nodes, restart the Cloud Management cluster group. </br><br>`Stop-ClusterGroup "Cloud Management"`</br><br>`Start-ClusterGroup "Cloud Management"`</br><br> This won't fully remediate the issue as the progress details may still not be displayed for a duration of the update process. To get the latest update details, you can [Retrieve the update progress with PowerShell](./update/update-via-powershell-23h2.md#step-6-track-update-progress). |
427432
| Update <!--26659432--> |In some cases, `SolutionUpdate` commands could fail if run after the `Send-DiagnosticData` command. | Make sure to close the PowerShell session used for `Send-DiagnosticData`. Open a new PowerShell session and use it for `SolutionUpdate` commands.|
433+
| Security <!-- 56969147 --> | When fixing the compliance for the minimum password length rule, even after you've changed the minimum password length on the Azure Local host to 14, you continue to see it as non-compliant in Azure policy. | You can verify the length of the password using the `net accounts` cmdlet. In the output, find **Minimum password length** to see the value. |
428434

429435
::: moniker-end
430436

@@ -480,6 +486,8 @@ The following table lists the known issues from previous releases:
480486
| Azure Local VM management |Deleting a network interface on an Azure Local VM from Azure portal doesn't work in this release.| Use the Azure CLI to first remove the network interface and then delete it. For more information, see [Remove the network interface](/cli/azure/stack-hci-vm/nic#az-stack-hci-vm-nic-remove) and see [Delete the network interface](/cli/azure/stack-hci-vm/network/nic#az-stack-hci-vm-network-nic-delete).|
481487
| Update | When updating the Azure Local instance via the Azure Update Manager, the update progress and results may not be visible in the Azure portal.| To work around this issue, on each node, add the following registry key (no value needed):<br><br>`New-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Services\HciCloudManagementSvc\Parameters" -force`</br><br> Then on one of the nodes, restart the Cloud Management cluster group. </br><br>`Stop-ClusterGroup "Cloud Management"`</br><br>`Start-ClusterGroup "Cloud Management"`</br><br> This won't fully remediate the issue as the progress details may still not be displayed for a duration of the update process. To get the latest update details, you can [Retrieve the update progress with PowerShell](./update/update-via-powershell-23h2.md#step-6-track-update-progress). |
482488
| Update <!--26659432--> |In some cases, `SolutionUpdate` commands could fail if run after the `Send-DiagnosticData` command. | Make sure to close the PowerShell session used for `Send-DiagnosticData`. Open a new PowerShell session and use it for `SolutionUpdate` commands.|
489+
| Security <!-- 56969147 --> | When fixing the compliance for the minimum password length rule, even after you've changed the minimum password length on the Azure Local host to 14, you continue to see it as non-compliant in Azure policy. | You can verify the length of the password using the `net accounts` cmdlet. In the output, find **Minimum password length** to see the value. |
490+
483491

484492
::: moniker-end
485493

@@ -509,12 +517,11 @@ The following issues are fixed in this release:
509517

510518
### Known issues in this release
511519

512-
<!--The following table lists the known issues in this release:
520+
The following table lists the known issues in this release:
513521

514522
|Feature |Issue |Workaround |
515-
|---------|---------|---------| -->
516-
517-
Microsoft isn't aware of any known issues in this release.
523+
|---------|---------|---------|
524+
| Security <!-- 56969147 -->| When fixing the compliance for the minimum password length rule, even after you've changed the minimum password length on the Azure Local host to 14, you continue to see it as non-compliant in Azure policy. | You can verify the length of the password using the `net accounts` cmdlet. In the output, find **Minimum password length** to see the value. |
518525

519526
### Known issues from previous releases
520527

0 commit comments

Comments
 (0)