由于此错误,我无法在Powershell中导入任何模块:
PS C:\Users\Administrator> import-module failoverclusters
The term 'import-module' is not recognized as a cmdlet, function, operable program, or script file. Verify the term and
try again.
At line:1 char:14
+ import-module <<<< failoverclusters
这是全新安装的Windows Server 2008 Enterprise。我通过服务器管理器将Powershell安装为Windows功能。我安装Windows Server时没有安装它。
答案 0 :(得分:8)
那是因为Windows 2008只附带了使用Snapins的PowerShell 1.0。如果需要模块支持:安装PowerShell 2.0或3.0。 Links til installers:
Powershell 2.0:x64 (64-bit)或x86 (32-bit)
要安装PS 3.0,您至少需要2008 SP2(并下载Windows 6.0 64或32位版本。)
答案 1 :(得分:0)
尝试右键单击PowerShell图标,然后选择“导入系统模块”选项。然后运行命令Set-ExecutionPolicy RemoteSigned
。