Is there a way to import Active Directory Module to a Windows 7 workstation from a server using Power Shell? We have server 2008 and 2012.
The reason is that, we don't want install Active Directory Module on all of our workstations.
Is there a way to import Active Directory Module to a Windows 7 workstation from a server using Power Shell? We have server 2008 and 2012.
The reason is that, we don't want install Active Directory Module on all of our workstations.
You could connect to the AD-Server via New-PSSession Hostname -name ModuleSession and do a Import-PSSession -Name ModuleSession to import all modules of that session. But keep in mind that you need to have administrative right to do that. If you only want to get some info about you ad-objects, adsi would be the better way (only user permissions needed).