Skip to content

Commit 4250d6a

Browse files
authored
Update workaround instructions for hotpatching
Clarified instructions for applying the manual workaround for hotpatching on affected machines, including details on the registry key step.
1 parent 445a1e5 commit 4250d6a

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

WindowsServerDocs/get-started/enable-hotpatch-azure-arc-enabled-servers.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Please note that hotpatching on [Windows Server 2025 Datacenter: Azure Edition](
156156

157157
To resolve this issue, a series of manual steps is recommended. Failure to apply the workaround will result in regular (non-hotpatch) updates until (and including) the next baseline month, which is currently scheduled for January 2026. These updates will require a reboot each month.
158158

159-
There are two ways to apply the manual workaround on affected machines. Each of the options below offer a complete solution. You will need to apply the workadound on each of the affected machines **before** next scheduled update installation, which is anticipated on November “patch Tuesday” date (November 11, 2025.) Applying the workaround will require a reboot, so plan accordingly.
159+
There are two ways to apply the manual workaround on affected machines. Each of the options below offer a complete solution. You will need to apply the workadound on each of the affected machines **before** the next update is offered, which is anticipated on November “patch Tuesday” date (November 11, 2025.) Applying the workaround will require a reboot, so plan accordingly.
160160

161161
Once either of the following workarounds is applied, subsequent hotpatches (in November and December 2025) will apply without a reboot as expected.
162162

@@ -167,15 +167,17 @@ Once either of the following workarounds is applied, subsequent hotpatches (in N
167167
](/troubleshoot/windows-client/group-policy/use-group-policy-enable-update-disabled-by-default).
168168
3. Set the **KB5062660 251028_18301 Feature Preview** policy to **Enabled** state via either Local or Group Policy.
169169
4. Once the policy is applied, reboot the affected machine(s).
170-
5. Delete the **DeviceLicensingServiceCommandMutex** value found under **HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Subscriptions** registry key.
170+
5. Delete the **DeviceLicensingServiceCommandMutex** value found under **HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Subscriptions** registry key. (if the value is missing already, just ignore this step.)
171171

172172
#### Option 2. Use a script to enable the remediation
173173

174174
Run the following series of PowerShell commands as administrator on each of the affected machines. Note that the last command will prompt for a restart. The mitigation is not complete until the machine is rebooted, and we recommend that you restart immediately after the previous commands are executed.
175175
```PowerShell
176176
Stop-Service -Name 'himds'
177177
New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Policies\Microsoft\FeatureManagement\Overrides' -PropertyType 'dword' -Name '4264695439' -Value 1 -Force
178-
Remove-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Subscriptions' -Name 'DeviceLicensingServiceCommandMutex'
178+
if ( ( Get-Itemproperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Subscriptions' ).DeviceLicensingServiceCommandMutex ) {
179+
Remove-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Subscriptions' -Name 'DeviceLicensingServiceCommandMutex'
180+
}
179181
Restart-Computer -Confirm
180182
```
181183

0 commit comments

Comments
 (0)