如何在 Windows 10 中的 PowerShell 中添加 Active Directory 模块?

如何在 Windows 10 中的 PowerShell 中添加 Active Directory 模块?

我已经安装了适用于 Windows 10 技术预览版(2015 年 1 月)的远程服务器管理工​​具,但没有任何效果。有人知道该怎么做吗?

非常感谢!

答案1

Windows 10 发布版本的 RSAT 工具尚未发布。

它是预期的本月某个时候,与 Server 2016 技术预览版 3 同时发布。

一旦推出,请像平常一样安装并启用。

目前,您可以随时启动 Windows 8 VM(使用附带的 Hyper-V 功能?)并从中导入远程 PowerShell 会话。

大致如下:

$RsatSession = New-PSSession -ComputerName Win8VM # Maybe include -credential or -authentication
Import-PSSession -Session $RsatSession -Module ActiveDirectory,(Any other RSAT Modules you want)

注意:我还没有亲自测试过。我打算等到工具出来后再升级我的工作站。

相关内容