Skip to content

Commit 909dec3

Browse files
authored
Merge pull request #7679 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/windowsserverdocs (branch main)
2 parents ef5c5ba + 0f8f13b commit 909dec3

2 files changed

Lines changed: 4 additions & 16 deletions

File tree

WindowsServerDocs/failover-clustering/create-workgroup-cluster.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ A consistent administrator user account must be created on each node. The userna
9292

9393
1. If the nonbuiltin administrator account isn't used, then you need to set the LocalAccountTokenFilterPolicy in the registry. The policy can be done in PowerShell with the following command:
9494
```PowerShell
95-
New-itemproperty -path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System Name LocalAccountTokenFilterPolicy -Value 1​
95+
New-itemproperty -path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System -Name LocalAccountTokenFilterPolicy -Value 1​
9696
```
9797
9898
---
@@ -176,7 +176,7 @@ The following steps show how to install the Failover Clustering feature in Power
176176
177177
1. Run the PowerShell command:
178178
```PowerShell
179-
Install-WindowsFeature Name Failover-Clustering IncludeManagementTools
179+
Install-WindowsFeature -Name Failover-Clustering -IncludeManagementTools
180180
```
181181
182182
1. Once the installation process is done, verify installation was successful by running these commands:
@@ -265,7 +265,7 @@ If you prefer to create a workgroup cluster using PowerShell, follow these steps
265265
266266
1. After validation passes, create the workgroup cluster using the following command:
267267
```PowerShell
268-
New-Cluster Name MyCluster -Node server1, server2 -AdministrativeAccessPoint DNS
268+
New-Cluster -Name MyCluster -Node server1, server2 -AdministrativeAccessPoint DNS
269269
```
270270
271271
1. After the cluster is successfully created, you can do things such as verify cluster [quorum configuration](/azure/azure-local/concepts/quorum?context=/windows-server/context/windows-server-failover-clustering), [create clustered roles](/windows-server/failover-clustering/create-failover-cluster#create-clustered-roles), and optionally, create [Cluster Shared Volumes (CSV)](failover-cluster-csvs.md).

WindowsServerDocs/networking/network-atc/network-atc.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to deploy host networking with Network ATC for Windows Se
44
#customer intent: As a network administrator, I want to deploy host networking using Network ATC so that I can manage compute, storage, and management networks across all cluster nodes using the same adapters.
55
author: robinharwood
66
ms.topic: how-to
7-
ms.date: 07/18/2025
7+
ms.date: 11/20/2025
88
ms.author: roharwoo
99
ms.custom:
1010
- ai-gen-docs-bap
@@ -251,18 +251,6 @@ Get-NetQosPolicy | Remove-NetQosPolicy -Confirm:$false
251251
Get-NetQosFlowControl | Disable-NetQosFlowControl
252252
```
253253

254-
### Error: Network Symmetry Check Failure
255-
256-
You might encounter a situation where functionally symmetric adapters have different component ID strings. It might occur if a substring is added to an adapter's component ID during an upgrade or when combining OCP and PCI NICs within the same intent. To work around this issue, you can disable the component ID based symmetry check by setting the `NicSymmetryCheckEnabled` registry key to 0. This setting allows Network ATC to proceed with the deployment without checking for symmetry based on component IDs. You should only use this workaround if you're certain that the adapters are functionally symmetric.
257-
258-
```powershell
259-
Stop-Service -Name NetworkATC
260-
New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Services\NetworkATC' -Name "NicSymmetryCheckEnabled" -Value 0 -PropertyType DWord
261-
Start-Service -Name NetworkATC
262-
```
263-
264-
After you disable the component ID based symmetry check, you can continue with the intent deployment.
265-
266254
### Error: RDMANotOperational
267255

268256
:::image type="content" source="../media/network-atc/error-rdmanotoperational.png" alt-text="Screenshot of RDMA Not Operational error." lightbox="../media/network-atc/error-rdmanotoperational.png":::

0 commit comments

Comments
 (0)