4

由于此错误,我无法在 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 时还没有安装它。

4

2 回答 2

8

这是因为 Windows 2008 仅附带使用 Snapins 的 PowerShell 1.0。如果您需要模块支持:安装 PowerShell 2.0 或 3.0。链接直到安装程序:

Powershell 2.0:x64(64 位)x86(32 位)

PowerShell 3.0

要安装 PS 3.0,您至少需要 2008 SP2(并下载 windows 6.0 64 或 32 位版本)。

于 2013-01-29T16:25:06.710 回答
0

尝试右键单击 PowerShell 图标并选择“导入系统模块”选项。然后运行命令Set-ExecutionPolicy RemoteSigned

于 2016-04-21T09:36:45.957 回答