Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

224,809

Downloads of v 1.0.3:

1,333

Last Update:

19 Mar 2015

Package Maintainer(s):

Software Author(s):

  • Microsoft

Tags:

msu administration

RSAT

This is not the latest version of RSAT available.

  • 1
  • 2
  • 3

1.0.3 | Updated: 19 Mar 2015

Downloads:

224,809

Downloads of v 1.0.3:

1,333

Software Author(s):

  • Microsoft

RSAT 1.0.3

This is not the latest version of RSAT available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Unknown


Verification Testing Passed

Details

Scan Testing Resulted in Investigate

Details
Package Approved

This package was approved by moderator alexinslc on 24 May 2015.

WARNING

This package is unlisted and hidden from package listings.

Description

The Remote Server Administration Tools (RSAT) pack is a feature that is
included with Windows Server Operation systems. For Windows Vista and
later workstation operating systems, an addon MSU may be downloaded with the RSAT. This package installs
that MSU.


tools\ChocolateyInstall.ps1
$package = 'RSAT'
$osInfo = Get-WmiObject Win32_OperatingSystem | SELECT Version, ProductType, Caption
$osInfo.Version = [version] $osInfo.Version

if ($osInfo.Version -lt [version]'6.0') {
    Write-Write-ChocolateyFailure $package 'The Remote System Administration Tool (RSAT) requires Windows Vista, Windows 2008 Server or later.'
    return
}
elseif ($osInfo.ProductType -ne 1) {
    Write-Host 'The RSAT is built into Windows server OSes, making this effectively a stub package'
    Write-ChocolateySuccess $package
}
else {
    if ($osInfo.Version.Major -eq 6) {
        if ($osInfo.Version.Minor -eq 0) {
            $url = 'http://download.microsoft.com/download/3/0/1/301EC38B-D8BD-40CD-A3B8-3A514A553BE8/Windows6.0-KB941314-x86_en-US.msu'
            $url64 = 'http://download.microsoft.com/download/6/7/3/673608E6-FAC4-4601-9443-6067FF432D98/Windows6.0-KB941314-x64_en-US.msu'
        }
        elseif ($osInfo.Version.Minor -eq 1) {
            $url = 'http://download.microsoft.com/download/4/F/7/4F71806A-1C56-4EF2-9B4F-9870C4CFD2EE/Windows6.1-KB958830-x86-RefreshPkg.msu'
            $url64 = 'http://download.microsoft.com/download/4/F/7/4F71806A-1C56-4EF2-9B4F-9870C4CFD2EE/Windows6.1-KB958830-x64-RefreshPkg.msu'
        }
        elseif ($osInfo.Version.Minor -eq 2) {
            $url = 'http://download.microsoft.com/download/4/3/F/43FAC524-F605-426E-A2AE-EAD03D264FDE/Windows6.2-KB2693643-x86.msu'
            $url64 = 'http://download.microsoft.com/download/4/3/F/43FAC524-F605-426E-A2AE-EAD03D264FDE/Windows6.2-KB2693643-x64.msu'
        }
		elseif ($osInfo.Version.Minor -eq 3) {
            $url = 'http://download.microsoft.com/download/1/8/E/18EA4843-C596-4542-9236-DE46F780806E/Windows8.1-KB2693643-x86.msu'
            $url64 = 'http://download.microsoft.com/download/1/8/E/18EA4843-C596-4542-9236-DE46F780806E/Windows8.1-KB2693643-x64.msu'
        }
        else {
            Write-ChocolateyFailure $package "This package does not support $($osInfo.Caption) yet."
            return
        }
        $chocTempDir = Join-Path $env:TEMP "chocolatey"
        $tempDir = Join-Path $chocTempDir "$package"
        if (![System.IO.Directory]::Exists($tempDir)) {[System.IO.Directory]::CreateDirectory($tempDir) | Out-Null}
        $file = Join-Path $tempDir "$($packageName).msu"
        Get-ChocolateyWebFile $package $file $url $url64
        Start-ChocolateyProcessAsAdmin @($file, '/quiet', '/norestart') 'wusa.exe'
        Write-ChocolateySuccess $package
    }
	elseif ($osInfo.Version.Major -eq 10) {
        if ($osInfo.Version.Minor -eq 0) {
            $url = 'http://download.microsoft.com/download/1/D/8/1D8B5022-5477-4B9A-8104-6A71FF9D98AB/WindowsTH-KB2693643-x86.msu'
            $url64 = 'http://download.microsoft.com/download/1/D/8/1D8B5022-5477-4B9A-8104-6A71FF9D98AB/WindowsTH-KB2693643-x64.msu'
        }
        else {
            Write-ChocolateyFailure $package "This package does not support $($osInfo.Caption) yet."
            return
        }
        $chocTempDir = Join-Path $env:TEMP "chocolatey"
        $tempDir = Join-Path $chocTempDir "$package"
        if (![System.IO.Directory]::Exists($tempDir)) {[System.IO.Directory]::CreateDirectory($tempDir) | Out-Null}
        $file = Join-Path $tempDir "$($packageName).msu"
        Get-ChocolateyWebFile $package $file $url $url64
        Start-ChocolateyProcessAsAdmin @($file, '/quiet', '/norestart') 'wusa.exe'
        Write-ChocolateySuccess $package
    }
    else {
        Write-ChocolateyFailure $package "This package does not support $($osInfo.Caption) yet."
        return
    }
        

}

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Remote Server Administration Tools 2.1809.0.20210804 3116 Wednesday, August 4, 2021 Approved
Remote Server Administration Tools 2.1809.0.20210707 5847 Wednesday, July 7, 2021 Approved
Remote Server Administration Tools 2.1809.0.20200703 39871 Friday, July 3, 2020 Approved
Remote Server Administration Tools 2.1809.0.20200528 5131 Thursday, May 28, 2020 Approved
Remote Server Administration Tools 2.1809.0.20190205 45854 Wednesday, February 6, 2019 Approved
Remote Server Administration Tools 2.1809.0.20190111 1067 Monday, January 28, 2019 Approved
Remote Server Administration Tools 2.1809 3285 Wednesday, December 12, 2018 Approved
Remote Server Administration Tools 2.1803.0.201806011 6827 Monday, June 11, 2018 Approved
Remote Server Administration Tools 2.1803.0.20180604 1376 Monday, June 4, 2018 Approved
Remote Server Administration Tools 2.1803.0.20180601 564 Friday, June 1, 2018 Approved
Remote Server Administration Tools 2.1803 834 Thursday, May 31, 2018 Approved
rsat (Install) 2.1 14171 Monday, November 13, 2017 Approved
rsat (Install) 2.0 2216 Tuesday, August 29, 2017 Approved

This package has no dependencies.

Discussion for the RSAT Package

Ground Rules:

  • This discussion is only about RSAT and the RSAT package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or RSAT, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus