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…')
 
No edit summary
Line 1: Line 1:
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-4e344e43997d&displaylang=en Remote Server Administration Tools for Windows 7] from Microsoft.
Using Windows PowerShell


Once the Administration tools have been installed you then need to go to '''Turn Windows features on or off''' in Programs and Features.
= 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>




Here is a list of Retote tools that are installed.<br>
= Fix Install Error 0x800f0954 =
[[Image : Remote-Management.jpg]]


* 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 : Hyper-V]] [[Category : Windows 7]]
[[Category : Windows]]

Revision as of 03:45, 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........