WIndows 10 20H2 RSAT download

David Zemdegs 1,561 Reputation points
2020-12-08T02:29:43.933+00:00

Greetings,
Where can I find the RSAT download for Windows 10 20H2 please?
Thanks
David Z

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
10,606 questions
0 comments No comments
{count} votes

9 answers

Sort by: Most helpful
  1. Herculeon 66 Reputation points
    2021-06-10T13:47:41.843+00:00

    This also works

    $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 people found this answer helpful.

  2. Eleven Yu (Shanghai Wicresoft Co,.Ltd.) 10,676 Reputation points Microsoft Vendor
    2020-12-08T05:48:37.95+00:00

    Hi,

    Please check below article which should give you some guidance.
    https://learn.microsoft.com/en-us/windows-server/remote/remote-server-administration-tools

    Thanks,
    Eleven

    ----------

    If the Answer is helpful, please click "Accept Answer" and upvote it. Thanks.

    3 people found this answer helpful.

  3. A M 6 Reputation points
    2021-04-28T08:11:06.6+00:00

    I have the same "problem" because my company has an WSUS-Server set up where the tools are not supplied.
    To install I have to override the WSUS.

    Open PowerShell as Administrator
    "gpedit"

    My System is German there you find the GPO in
    Computerkonfiguration => Administrative Vorlagen => System => "Einstellungen für die Installation optionaler Komponenten und die Reparatur von Komponenten angeben" (I try ^^ Computerconfiguration -> Administrative Settings -> System -> Settings for intstallation of optional components for repair or s.th. scroll down it's not a folder ^^)
    active
    also check -> "Laden Sie Inhalte für das Reparieren ..." (Load content for repair ...)
    Set this by clicking OK and reopen the setting

    now in Powershell

    "Get-WindowsCapability -Online |? {$.Name -like "*RSAT*" -and $.State -eq "NotPresent"} | Add-WindowsCapability -Online"
    now grab a coffee and wait until RSATs installed

    back to "gpedit"
    inactive
    OK
    close "gpedit"

    last but not least in PowerShell

    "gpupdate /force" 
    "exit"
    
    1 person found this answer helpful.
    0 comments No comments

  4. Kapil Arya 7,596 Reputation points MVP
    2020-12-08T04:52:35.967+00:00

    Hello,

    In Windows 10 V1809 or later, RSAT is included as a set of 'Features on Demand' in the OS itself.

    See this guide to learn how you can install RSAT now:

    https://www.kapilarya.com/install-rsat-tools-on-windows-10-v1809-or-later

    Hope this helps!

    Note: Included link in this reply refers to blog post by a trusted Microsoft MVP.

    0 comments No comments

  5. quentin1mccallum 1 Reputation point
    2021-01-31T13:10:25.127+00:00

    This "In Windows 10 V1809 or later, RSAT is included as a set of 'Features on Demand' in the OS itself." is not working on my corporate 1909 laptop. The Add a Feature is empty.

    0 comments No comments