Shell – How to add Active Directory module in PowerShell in Windows 10

active-directorypowershell

I've installed Remote Server Administration Tools for Windows 10 Technical Preview (January 2015) but no dice. Anybody knows how to do this?

Many thanks!

Best Answer

The RSAT tools for the release build of Windows 10 aren't out yet.

It's expected sometime this month, alongside Tech Preview 3 of Server 2016.

Once it's out, install and enable as you normally would.

For now, you could always spin up a Windows 8 VM (using the included Hyper-V feature?) and import a remote PowerShell session from that.

Something along the lines of:

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

Note: I haven't tested this myself. I'm holding off on upgrading my workstation until the tools are out.

Related Question