Windows Web Server 2008 R2 中不包含 Powershell Servermanager 模块

Windows Web Server 2008 R2 中不包含 Powershell Servermanager 模块

这让我抓狂了!

显然,使用 servermanager 模块应该像输入一样简单:

Import-Module servermanager

问题是我没有它。

PS C:\Users\Administrator> Get-Module -ListAvailable


    Directory: C:\Windows\system32\WindowsPowerShell\v1.0\Modules


ModuleType Name                                ExportedCommands                                           
---------- ----                                ----------------                                           
Manifest   BitsTransfer                        {Add-BitsFile, Remove-BitsTransfer, Complete-BitsTransfe...
Manifest   CimCmdlets                          {Get-CimAssociatedInstance, Get-CimClass, Get-CimInstanc...
Script     ISE                                 {New-IseSnippet, Import-IseSnippet, Get-IseSnippet}        
Manifest   Microsoft.PowerShell.Diagnostics    {Get-WinEvent, Get-Counter, Import-Counter, Export-Count...
Manifest   Microsoft.PowerShell.Host           {Start-Transcript, Stop-Transcript}                        
Manifest   Microsoft.PowerShell.Management     {Add-Content, Clear-Content, Clear-ItemProperty, Join-Pa...
Manifest   Microsoft.PowerShell.Security       {Get-Acl, Set-Acl, Get-PfxCertificate, Get-Credential...}  
Manifest   Microsoft.PowerShell.Utility        {Format-List, Format-Custom, Format-Table, Format-Wide...} 
Manifest   Microsoft.WSMan.Management          {Disable-WSManCredSSP, Enable-WSManCredSSP, Get-WSManCre...
Script     PSDiagnostics                       {Disable-PSTrace, Disable-PSWSManCombinedTrace, Disable-...
Binary     PSScheduledJob                      {New-JobTrigger, Add-JobTrigger, Remove-JobTrigger, Get-...
Manifest   TroubleshootingPack                 {Get-TroubleshootingPack, Invoke-TroubleshootingPack}      
Manifest   WebAdministration                   {Start-WebCommitDelay, Stop-WebCommitDelay, Get-WebConfi...


    Directory: C:\Program Files (x86)\Microsoft SQL Server\110\Tools\PowerShell\Modules


ModuleType Name                                ExportedCommands                                           
---------- ----                                ----------------                                           
Manifest   SQLASCMDLETS                        {Add-RoleMember, Backup-ASDatabase, Invoke-ASCmd, Invoke...
Manifest   SQLPS                               {Backup-SqlDatabase, Add-SqlAvailabilityDatabase, Disabl...

任何尝试在 Google 中搜索“安装 servemanager 模块”都会返回数千个页面,以使用 servermanager 模块进行安装!:-\

我正在使用带有 Service Pack 1 和 Powershell v4 的最新版本的 Windows Web Server 2008 R2。

答案1

解决了!我不得不使用 32 位版本的 Powerhell,因为模块位于以下文件夹中:C:\Windows\System32\WindowsPowerShell\v1.0\Modules\

答案2

查看后C:\Windows\System32\WindowsPowerShell\v1.0\Modules您应该会看到一个ServerManager文件夹。如果没有,则表示该模块不可用。

据我所知,该模块仅在 2008 R2 上可用标准及以上版本。我的 2008(非 R2)服务器缺少它,但我的标准服务器有它。另外,请确保您使用的是 64 位 PowerShell,而不是 32 位。

相关内容