Windows-Server-2008-R2

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

  • November 24, 2014

這讓我發瘋!

顯然使用 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 中搜尋“安裝 servermanager 模組”的嘗試都會返回數千個頁面來使用 servermanager 模組安裝東西!:-\

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

解決了!我必須使用 32 位版本的 Powerhell,因為模組位於以下文件夾中:C:\Windows\System32\WindowsPowerShell\v1.0\Modules\

往裡看C:\Windows\System32\WindowsPowerShell\v1.0\Modules,你應該會看到一個ServerManager文件夾。如果不這樣做,則該模組不可用。

據我所知,該模組僅適用於 2008 R2 Standard及更高版本。我的 2008(非 R2)伺服器缺少它,但我的標準伺服器有它。此外,請確保您使用的是 64 位 PowerShell 而不是 32 位。

引用自:https://serverfault.com/questions/646136