2017-12-20 24 views
0

私はThinapp 5.2を使用してSCOM Console 2016をパッケージ化しようとしています。顧客はSCOMのPowerShell部分も使用したいと考えています。しかし、いつでもSCOM Shellを起動すると、特定の.dllファイルなどが見つからないというエラーが表示されます。SCOM 2016 PowerShell

私は既にVMにインストールしようとしましたが、同じエラーメッセージが表示されるため、Thinappはエラーを引き起こしていません。

私はどこに見えるべきだと知っていますか?

Import-Module : Cannot load Windows PowerShell snap-in C:\Program Files (x86)\System Center Operations Manager 2016\Powershell\OperationsManager\OM10.CoreCommands\Microsoft.EnterpriseManagement.Core.Cmdlets.dll because of the following error: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. 
 

 
Loader Exceptions: 
 
Could not load file or assembly Microsoft.EnterpriseManagement.Core, Version=7.0.5000. 
 
, Culture=neutral, PublicKeyToken=31bf3856ad364e35 or one of its dependencies. 
 
The system cannot find the file specified. 
 

 
At C:\Program Files (x86)\System Center Operations Manager 2016\Powershell\OperationsManager\OperationsManager.psm1:1261 char:14 
 
    + Import-Module <<<< $psScriptRoot\OM10.CoreCommands\OM10.CoreCommands.psd1 
 
    + CategoryInfo   : ResourceUnavailable: (:) [Import-Module], PSSnapInException 
 
    + FullyQualifiedErrorId : PSSnapInLoadFailure,Microsoft.PowerShell.Commands.ImportModuleCommand 
 
\t 
 
Import-Module : Could not load file or assembly file:///C:\Program Files (x86)\Systemcenter Operations Manager 2016\Powershell\OperationsManager\OM10.Commands\Microsoft.SystemCenter.OperationsManagerV10.Commands.dll or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded 
 
At C:\Program Files (x86)\System Center Operations Manager 2016\Powershell\OperationsManager\OperationsManager.psm1:1262 char:14 
 
    + Import-Module <<<< $psScriptRoot\OM10.Commands\OM10.Commands.psd1 
 
    + CategoryInfo   : NotSpecified: (:) [Import-Module], BadImageFormatException 
 
    + FullyQualifiedErrorId : System.BadImageFormatException,Microsoft.PowerShell.Commands.ImportModuleCommand 
 

 
Add-Type : Could not load file or assembly file:///C:\Program Files (x86)\System Center Operations Manager 2016\Console\Microsoft.Mom.Common.dll or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded 
 
At C:\Program Files (x86)\System Center Operations Manager 2016\Powershell\OperationsManager\OperationsManager.psm1:1311 char:15 
 
    + Add-Type <<<< -Path $consoleMomCommon 
 
    + CategoryInfo   : NotSpecified: (:) [Add-Type], BadImageFormatException 
 
    + FullyQualifiedErrorId : System.BadImageFormatException,Microsoft.PowerShell.Commands.AddTypeCommand

答えて

0

解決される問題、それは我々がWindows管理フレームワークの古いバージョンを使用していたが判明しました。バージョン5.1に更新した後、すべてのエラーはなくなりました。この更新プログラムをインストールしました:KB3191566

関連する問題