为Windows 10安装Active Directory模块powershell

时间:2016-07-13 07:23:02

标签: powershell powershell-module

下午好! 我需要在Windows 10中只添加模块rsat Active Directory模块powershell 执行命令:     启用-WindowsOptionalFeature -Online -FeatureName RSATClient-Roles-AD-Powershell 但错误:

Enable-WindowsOptionalFeature : Не удается прочитать параметр реестра.(Can not read the registry entry.)
строка:1 знак:1
+ Enable-WindowsOptionalFeature -Online -FeatureName RSATClient-Roles-A ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Enable-WindowsOptionalFeature], COMException
    + FullyQualifiedErrorId : Microsoft.Dism.Commands.EnableWindowsOptionalFeatureCommand

如果要应用参数-All,则会安装所有组件。 如何解决问题?

2 个答案:

答案 0 :(得分:1)

在PowerShell脚本的顶部,您只需要包含以下内容。

Import-Module activedirectory

假设您已通过控制面板在Win10计算机上安装了RSAT工具。

答案 1 :(得分:0)

这些说明适用于Windows 7;对于Windows 10,该过程可能类似。

  1. 首先,查找并安装适用于您的Windows版本的远程服务器管理工​​具(RSAT)更新包。 I found this easily

  2. 然后,您需要在安装后启用该功能。

    1. 转到控制面板 - >程序和功能 - >打开或关闭Windows功能(或直接从命令行打开它:%windir%\System32\OptionalFeatures.exe
    2. 查找远程服务器管理工​​具 - >角色使用工具 - > AD DS和AD LDS工具 - >适用于Windows PowerShell的Active Directory模块,并将其打开

      Windows Features

    3. 您可能需要重新启动计算机。我不记得。

  3. 最后,导入模块,并正常使用。