windows server 2008 – Import-Module : The specified module activedirectory was not loaded because no valid module file was found in any module directory
windows server 2008 – Import-Module : The specified module activedirectory was not loaded because no valid module file was found in any module directory
AD Powershell module should be listed under installed Features. See image:
.
For non-servers this requires Remote Server Administration Tools for Windows __
- Windows 7: http://www.microsoft.com/en-us/download/details.aspx?id=7887
- Windows 8: http://www.microsoft.com/en-us/download/details.aspx?id=28972
- Windows 10: https://www.microsoft.com/en-au/download/details.aspx?id=45520
windows server 2008 – Import-Module : The specified module activedirectory was not loaded because no valid module file was found in any module directory
The ActiveDirectory
module for powershell can be installed by adding the RSAT-AD-Powershell
feature.
In an elevated powershell window:
Add-WindowsFeature RSAT-AD-PowerShell
or
Enable-WindowsOptionalFeature -FeatureName ActiveDirectory-Powershell -Online -All
Related Posts
- ssl – Issues with installing python libraries on Windows : CondaHTTPError: HTTP 000 CONNECTION FAILED for url
- windows – Python executables: py2exe or PyInstaller?
- windows – Open File in Another Directory (Python)
- How to use Pythons easy_install on Windows … its not so easy
- Python version 2.7 required, which was not found in the registry error when attempting to install netCDF4 on Windows 8
- How can I find where Python is installed on Windows?
- batch file – How Should I Set Default Python Version In Windows?
- OverflowError: Python int too large to convert to C long on windows but not mac