Remote Server Administration Tools (RSAT): Difference between revisions
From KlavoWiki
Jump to navigationJump to search
Created page with 'To enable remote management from a Windows 7 client computer you need to install the [http://www.microsoft.com/downloads/details.aspx?FamilyID=7d2f6ad7-656b-4313-a005-4e344e43997…' |
m David moved page Remote Server Administration Tools for Windows 7 to Remote Server Administration Tools (RSAT) without leaving a redirect |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
Using Windows PowerShell | |||
= List and Install = | |||
Display available tools. | |||
<pre> | |||
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, Name, State | |||
</pre> | |||
Install a specific tool | |||
<pre> | |||
Add-WindowsCapability -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 -Online | |||
</pre> | |||
= Fix Install Error 0x800f0954 = | |||
* Open gpedit.msc | |||
* Locate Computer Configuration\Administrative Template\System\Specfy setting for optimal component installation and component repair | |||
* Select Enable | |||
* Select Download repair content and option features........ | |||
[[Category : Windows]] |
Latest revision as of 03:46, 8 March 2021
Using Windows PowerShell
List and Install
Display available tools.
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, Name, State
Install a specific tool
Add-WindowsCapability -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 -Online
Fix Install Error 0x800f0954
- Open gpedit.msc
- Locate Computer Configuration\Administrative Template\System\Specfy setting for optimal component installation and component repair
- Select Enable
- Select Download repair content and option features........