question

Chris-4250 avatar image
0 Votes"
Chris-4250 asked EricBickle-5137 edited

Trying to install RSAT on Win10 V2004 while SCCM is set as WSUS server and receiving error 0x800f0954

If I run the command in powershell: "Get-WindowsCapability -name RSAT* -Online | Add-WindowsCapability -Online"

I receive the error 0x800f0954.

The resolution I have found is to set the GPO: computer configuration > administrative templates > system > specify settings for optional component installation and component repair to Enable and check the box "Download repair content and optional features directly from Windows Update instate of WSUS"

Once I do this it downloads directly from windows update and works fine.

Is that the only solution? Is there no way to put RSAT on the WSUS server and allow the computer to pull RSAT from WSUS?

That's fine if that is the only solution, I just want to make sure there is no way to make it download from WSUS.

windows-server-update-services
· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

@Chris-4250
It seems there is no update for a couple of days. May we know the current status of the problem? Is there any other assistance we can provide?


If you have any questions, please keep us in touch.

0 Votes 0 ·
RitaHu-MSFT avatar image
0 Votes"
RitaHu-MSFT answered RitaHu-MSFT edited

Hi Chris-4250,


Thanks for your posting on Q&A.

Starting with Windows 10 October 2018 Update, RSAT is included as a set of "Features on Demand" right from Windows 10. Do not download an RSAT package from this page. Instead, just go to "Manage optional features" in Settings and click "Add a feature" to see the list of available RSAT tools. Select and install the specific RSAT tools you need. To see installation progress, click the Back button to view status on the "Manage optional features" page.


In my opinion, it is difficult for WSUS to deploy the RSAT. For more details, please refer to this link.

Reference picture:
25017-4.png

Regards,
Rita


If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.



4.png (40.9 KiB)
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

EricBickle-5137 avatar image
1 Vote"
EricBickle-5137 answered EricBickle-5137 edited

This powershell script will change your PC to stop using WSUS, download and install RSAT and then revert your PC back to using WSUS afterward.

$UseWUServer = Get-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "UseWUServer" | Select-Object -ExpandProperty UseWUServer

Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "UseWUServer" -Value 0

Restart-Service "Windows Update"

Get-WindowsCapability -Name "RSAT*" -Online | Add-WindowsCapability –Online

Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "UseWUServer" -Value $UseWUServer

Restart-Service "Windows Update"

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.