下午好! 我需要在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,则会安装所有组件。 如何解决问题?
答案 0 :(得分:1)
在PowerShell脚本的顶部,您只需要包含以下内容。
Import-Module activedirectory
假设您已通过控制面板在Win10计算机上安装了RSAT工具。
答案 1 :(得分:0)
这些说明适用于Windows 7;对于Windows 10,该过程可能类似。
首先,查找并安装适用于您的Windows版本的远程服务器管理工具(RSAT)更新包。 I found this easily
然后,您需要在安装后启用该功能。
%windir%\System32\OptionalFeatures.exe
查找远程服务器管理工具 - >角色使用工具 - > AD DS和AD LDS工具 - >适用于Windows PowerShell的Active Directory模块,并将其打开
您可能需要重新启动计算机。我不记得。