Fix Windows 10 RSAT Install Error 0x800f0954. Windows 10 RSAT Install Error 0x800f0954.
When installing RSAT via Add-WindowsCapability
or DISM
:
DISM.exe /Online /add-capability/CapabilityName:Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0 .1.0)
Most likely your computer is configured to update only from the local WSUS update server using Group Policy settings.
Registry Editor
You can temporarily disable updating from the WSUS server through the registry:
1. Open the registry key;
HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU
2. Change the UseWUServer to 0;
3. Restart the Windows Update Service (wuauserv).
NOTE: Do not reboot, because Group Policy Objects with WSUS will apply again.
PowerShell
Use the following PowerShell script:
$currentWU = Get-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "UseWUServer" | select -ExpandProperty UseWUServer
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "UseWUServer" -Value 0
Restart-Service wuauserv
Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability –Online
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "UseWUServer" -Value $currentWU
Restart-Service wuauserv
Group Policy
You can configure a new group policy option that allows you to configure installation options for additional Windows and Features On Demand components.
NOTE: For this operation, you need to have rights to edit Group Policy Objects.
1. Open the local GPO editor – gpedit.msc;
2. Go to the GPO section Computer Configuration\Administrative Templates\System;
3. Enable the policy Specify settings for optional component installation and component repair, and check the option Download repair content and optional features directly from Windows Updates instead of Windows Server Updates Services (WSUS);
4. Save the changes and update policy settings on the client with an error;
gpupdate /force