Downloads:
241,510
Downloads of v 2.1809.0.20200528:
5,157
Last Update:
28 May 2020
Package Maintainer(s):
Software Author(s):
- Microsoft
Tags:
rsat windows adminpak server features- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Remote Server Administration Tools
This is not the latest version of Remote Server Administration Tools available.
- 1
- 2
- 3
2.1809.0.20200528 | Updated: 28 May 2020
- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
241,510
Downloads of v 2.1809.0.20200528:
5,157
Maintainer(s):
Software Author(s):
- Microsoft
Remote Server Administration Tools 2.1809.0.20200528
This is not the latest version of Remote Server Administration Tools available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Microsoft. The inclusion of Microsoft trademark(s), if any, upon this webpage is solely to identify Microsoft goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Remote Server Administration Tools, run the following command from the command line or from PowerShell:
To upgrade Remote Server Administration Tools, run the following command from the command line or from PowerShell:
To uninstall Remote Server Administration Tools, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download rsat --internalize --version=2.1809.0.20200528 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade rsat -y --source="'INTERNAL REPO URL'" --version="'2.1809.0.20200528'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade rsat -y --source="'INTERNAL REPO URL'" --version="'2.1809.0.20200528'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install rsat
win_chocolatey:
name: rsat
version: '2.1809.0.20200528'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'rsat' do
action :install
source 'INTERNAL REPO URL'
version '2.1809.0.20200528'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller rsat
{
Name = "rsat"
Version = "2.1809.0.20200528"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'rsat':
ensure => '2.1809.0.20200528',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 29 May 2020.
Remote Server Administration Tools (RSAT) enables IT administrators to remotely manage roles and features in versions of Windows Server since 2008 R2 from a computer that is running Windows 10, Windows 8.1, Windows 8, Windows 7, or Windows Vista.
Notes
RSAT will install only on Business, Ultimate, Professional, Education, or Enterprise (or LTSB/LTSC) editions of Windows. You cannot install RSAT on computers that are running Home or Standard editions of Windows.
For Windows Vista and Windows 7, the individual tools for the roles and features must be enabled after you install RSAT.
This package will install the latest version of RSAT for the running Windows OS unless it is Windows 10 AND the
Server
package parameter is used as follows:choco install rsat -params '"/Server:2016"'
Windows 10 (pre-1809) RSAT version recommendations:
- use the latest (default) when managing Windows Server, version 1803 or 1709 (Both
1803
and1709
are available if needed.) - use
2016
when managing Windows Server 2016 or previous versions
Windows 10 release 1809+
With the September 2018 release of Windows, RSAT is no longer a single install nor is it associated with a specific server version. Each of the RSAT features are separately available through Features on Demand. This package should allow for download and installation of some or all of the RSAT features. The /server
parameter (above) is ignored here, and all the (20+) available RSAT features will be installed unless you choose one or more of the most common features using the following parameters:
/AD
- Install the Active Directory Management feature./GP
- Install the Group Policy Management feature./SM
- Install the Server Manager feature./CS
- Install the Certificate Services feature./RD
- Install the Remote Desktop Management feature./FS
- Install the File Services Management feature./DNS
- Install the Domain Name Services Management feature./DHCP
- Install the DHCP Management feature./WSUS
- Install the WSUS Management feature.
Example: choco install rsat -params '"/AD /GP /DHCP"'
$ErrorActionPreference = 'Stop'
$osInfo = Get-WmiObject Win32_OperatingSystem | Select-Object Version, ProductType, Caption, OperatingSystemSKU, BuildNumber
$osInfo.Version = [version]$osInfo.Version
if ($osInfo.ProductType -ne 1) {
Write-Warning 'The Remote System Administration Toolkit (RSAT) is built into Windows Server, so it cannot be uninstalled.'
Return
}
If (($osInfo.Version.Major -ne 10) -or ($osInfo.BuildNumber -lt 17763)) {
$packages = & "$env:windir\system32\dism.exe" /online /get-packages |
Select-String -Pattern 'rsat|RemoteServerAdministrationTools' -AllMatches |
ForEach-Object {$_.line.split(':')[-1].trim()}
foreach ($package in $packages) {
& "$env:windir\system32\dism.exe" /Online /Remove-Package /NoRestart /PackageName:$package
if ($LASTEXITCODE) {
throw "Error $LASTEXITCODE trying to remove $package`nYou may need to reboot first."
}
}
} else {
# Apparently, some features must be removed after others.
$WhereArray = @()
$WhereArray += '($_.Name -notlike "Rsat.ActiveDirectory*")'
$WhereArray += '($_.Name -notlike "Rsat.GroupPolicy*")'
$WhereArray += '($_.Name -notlike "Rsat.ServerManager*")'
$WhereString = '($_.Name -like "Rsat*") -AND ($_.State -eq "Installed") -AND ' + ($WhereArray -join ' -AND ')
$Installed = Get-WindowsCapability -Online | Where-Object $([scriptblock]::Create($WhereString))
foreach ($Item in $Installed) {
try {
Write-Host "`nRemoving $($Item.Name) from Windows"
$DISMobject = Remove-WindowsCapability -Online -Name $Item.Name
if ($DISMobject.RestartNeeded) {
Write-Warning "A reboot is required."
}
} catch {
Write-Warning -Message $_.Exception.Message; break
}
}
# Go back and remove the rest.
$Installed = Get-WindowsCapability -Online | Where-Object {$_.Name -like 'Rsat*' -AND $_.State -eq 'Installed'}
foreach ($Item in $Installed) {
try {
Write-Host "`nRemoving $($Item.Name) from Windows"
$DISMobject = Remove-WindowsCapability -Online -Name $Item.Name
if ($DISMobject.RestartNeeded) {
Write-Warning "A reboot is required."
}
} catch {
Write-Warning -Message $_.Exception.Message; break
}
}
}
Write-Warning 'It is recommended that you restart the computer.'
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.1.20240710 | 9825 | Wednesday, July 10, 2024 | Approved | |
Remote Server Administration Tools 2.1809.0.20210815 | 91755 | Sunday, August 15, 2021 | Approved | |
Remote Server Administration Tools 2.1809.0.20210804 | 3140 | Wednesday, August 4, 2021 | Approved | |
Remote Server Administration Tools 2.1809.0.20210707 | 5863 | Wednesday, July 7, 2021 | Approved | |
Remote Server Administration Tools 2.1809.0.20200703 | 39903 | Friday, July 3, 2020 | Approved | |
Remote Server Administration Tools 2.1809.0.20200528 | 5157 | Thursday, May 28, 2020 | Approved | |
Remote Server Administration Tools 2.1809.0.20190205 | 45879 | Wednesday, February 6, 2019 | Approved | |
Remote Server Administration Tools 2.1809.0.20190111 | 1090 | Monday, January 28, 2019 | Approved | |
Remote Server Administration Tools 2.1809 | 3300 | Wednesday, December 12, 2018 | Approved | |
Remote Server Administration Tools 2.1803.0.201806011 | 6848 | Monday, June 11, 2018 | Approved | |
Remote Server Administration Tools 2.1803.0.20180604 | 1406 | Monday, June 4, 2018 | Approved | |
Remote Server Administration Tools 2.1803.0.20180601 | 597 | Friday, June 1, 2018 | Approved | |
Remote Server Administration Tools 2.1803 | 856 | Thursday, May 31, 2018 | Approved | |
rsat (Install) 2.1 | 14197 | Monday, November 13, 2017 | Approved | |
rsat (Install) 2.0 | 2267 | Tuesday, August 29, 2017 | Approved |
Copyright © Microsoft
This package has no dependencies.
Ground Rules:
- This discussion is only about Remote Server Administration Tools and the Remote Server Administration Tools 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 Remote Server Administration Tools, 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.