powershell sccm インポートモジュール エラー

powershell sccm インポートモジュール エラー

sccm powershellモジュールをダウンロードしましたhttps://www.microsoft.com/en-us/download/details.aspx?id=46681

.msi 経由でインストールしても問題はありません。インポートすると次のようになります:

>     Import-Module 'C:\Program Files (x86)\Microsoft Configuration Manager\AdminConsole\bin\ConfigurationManager.psd1' -Verbose
> 
> Output (first few lines, many more snipped for brevity, then the
> error):
> 
> VERBOSE: Loading module from path 'C:\Program Files (x86)\Microsoft
> Configuration Manager\AdminConsole\bin\ConfigurationManager.psd1'.
> VERBOSE: Loading 'Assembly' from path 'C:\Program Files
> (x86)\Microsoft Configuration
> Manager\AdminConsole\bin\AdminUI.PS.TypeAdapter.dll'. VERBOSE: Loading
> 'Assembly' from path 'C:\Program Files (x86)\Microsoft Configuration
> Manager\AdminConsole\bin\Microsoft.ConfigurationManagement.ManagementProvider.dll'.
> VERBOSE: Loading 'Assembly' from path 'C:\Program Files
> (x86)\Microsoft Configuration
> Manager\AdminConsole\bin\AdminUI.WqlQueryEngine.dll'. VERBOSE: Loading
> 'TypesToProcess' from path 'C:\Program Files (x86)\Microsoft
> Configuration
> Manager\AdminConsole\bin\Microsoft.ConfigurationManagement.PowerShell.Types.ps1xml'.

...

> VERBOSE: Importing cmdlet 'Clear-CMMigrationData'. VERBOSE: Loading
> module from path 'C:\Program Files (x86)\Microsoft Configuration
> Manager\AdminConsole\bin\AdminUI.PS.DatabaseReplication.dll'.
> Import-Module : Could not load type
> 'Microsoft.ConfigurationManagement.AdminConsole.Common.InvAvailabilityLevel'
> from assembly 'AdminUI.Common, Version=5.0.0.0, Culture=neutral,
> PublicKeyToken=31bf3856ad364e35'. At line:1 char:1
> + Import-Module $CMModulePath -Verbose
> + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>     + CategoryInfo          : NotSpecified: (:) [Import-Module], TypeLoadException
>     + FullyQualifiedErrorId : System.TypeLoadException,Microsoft.PowerShell.Commands.ImportModuleCommand

エラーに関連付けられている DLL はごく最近のものです:

PS C:\Program Files (x86)\Microsoft Configuration Manager\AdminConsole\bin> dir AdminUI.PS.DatabaseReplication*


    Directory: C:\Program Files (x86)\Microsoft Configuration Manager\AdminConsole\bin


Mode                LastWriteTime     Length Name
----                -------------     ------ ----
-a---          4/6/2015   4:00 AM      40112 AdminUI.PS.DatabaseReplication.dll 

コマンドが表示されないので、インストールが失敗したようです:

PS C:\Program Files (x86)\Microsoft Configuration Manager\AdminConsole\bin> Get-Command -Module ConfigurationManager | measure-object

カウント: 0 平均: 合計: 最大: 最小: プロパティ:

ここからどう進めばいいのか分からない

答え1

問題は、SCCM が「System Center 2012 R2」ではなく「System Center 2012」を実行していることにあるようです。

いろいろ検索した結果、「System Center Configuration Manager コマンドレット ライブラリ」について次のことがわかりました。

このリリースでは、次のバージョンの Configuration Manager がサポートされています。

System Center 2012 R2 Configuration Manager

一方、元のダウンロード サイトには次のように書かれています:

サポートされているオペレーティングシステム

Windows 7、Windows 8、Windows 8.1、Windows Server 2008、Windows Server 2008 R2、Windows Server 2012、Windows Server 2012 R2

そしてもちろん、私は Windows 7 からこれを実行しようとしていました。

はぁ。Powershell を動作させるには、SCCM を R2 に更新する必要があるようです。

[編集] SP1 にもコマンドレットがあることがわかったので、SCCM サーバーを管理している人たちに少なくともそのバージョンにアップグレードしてもらわなければなりません...

関連情報