、オペレーション マネージャーの管理パックを削除する方法

 

発行: 2016年3月

適用対象: System Center 2012 R2 Operations Manager,System Center 2012 - Operations Manager,System Center 2012 SP1 - Operations Manager

管理パックが不要になったら、オペレーション コンソールを使用して削除できます。 すべての設定とそれに関連するしきい値が削除された管理パックを削除すると System Center 2012 – Operations Managerです。 また、その管理パックの .mp または .xml ファイルは、管理サーバーのハード_ディスクから削除します。 依存管理パックを最初に削除する場合にのみ、管理パックを削除することができます。

管理パックを削除するには

  1. Operations Manager 管理者ロールのメンバーであるアカウントを使用してコンピューターにログオンします。

  2. オペレーション コンソールで、[管理] をクリックします。

  3. 管理, 、クリックして 管理パック

  4. 管理パック ] ウィンドウで、管理パックを右クリックしたいと考えてを削除し、クリックして 削除します。

  5. 管理パックを削除すると、一部のユーザー ロールのスコープに影響を与える可能性があるというメッセージで、[はい] をクリックします。

プログラムを使用して依存関係を持つ管理パックを削除します。

UI の [管理] ウィンドウから管理パックが削除されると、非常に時間がかかるを再帰的にトラックになり、本来意図されている管理パックを削除する前にすべての依存管理パックを削除できます。 次のスクリプトを連鎖削除を使用して、管理パックとそのすべての依存関係。

スクリプトを実行するには、次の手順を実行します。

  1. 管理者モードでは、Operations Manager コマンド シェルのプロンプトを開きます。

  2. ディスクに保存したディレクトリから、接続されているスクリプトを実行します。 たとえば、

    • .\RecursiveRemove.ps1 < ID または管理パックのシステム名 >

    • .\RecursiveRemove.ps1 Microsoft.SQLServer.2014.Discovery

    ID または選択することで、アンインストールする管理パックのシステム名を確認できます 管理パックのインストールされている 表示します。 クリックし、 プロパティ [操作] ウィンドウ。 コンテンツをコピー ID: テキスト ボックス] タブでは一般にします。

# The sample scripts are not supported under any Microsoft standard support 
# program or service. The sample scripts are provided AS IS without warranty 
# of any kind. Microsoft further disclaims all implied warranties including, 
# without limitation, any implied warranties of merchantability or of fitness
# for a particular purpose. The entire risk arising out of the use or 
# performance of the sample scripts and documentation remains with you. In no
# event shall Microsoft, its authors, or anyone else involved in the creation,
# production, or delivery of the scripts be liable for any damages whatsoever
# (including, without limitation, damages for loss of business profits,
# business interruption, loss of business information, or other pecuniary
# loss) arising out of the use of or inability to use the sample scripts or
# documentation, even if Microsoft has been advised of the possibility of 
# such damages.
# PowerShell script to automagically remove an MP and its dependencies.
# Original Author   :       Christopher Crammond
# Modified By       :       Chandra Bose
# Date Created      :   April 24th, 2012
# Date Modified     :   Januray 18th, 2016
# Version       :       0.0.2

# Needed for SCOM SDK
$ipProperties = [System.Net.NetworkInformation.IPGlobalProperties]::GetIPGlobalProperties()
$rootMS = "{0}.{1}" -f $ipProperties.HostName, $ipProperties.DomainName


#######################################################################
# Helper method that will remove the list of given Management Packs.
function RemoveMPsHelper 
{param($mpList)
  foreach ($mp in $mpList)
  {
    $recursiveListOfManagementPacksToRemove = Get-SCOMManagementPack -Name $mp.Name -Recurse
    if ($recursiveListOfManagementPacksToRemove.Count -gt 1)
    {
        Echo "`r`n"
        Echo "Following dependent management packs has to be deleted before deleting $($mp.Name)..."

        $recursiveListOfManagementPacksToRemove | format-table name
        RemoveMPsHelper $recursiveListOfManagementPacksToRemove
    }
    else
    {
        $mpPresent = Get-ManagementPack -Name $mp.Name
        $Error.Clear()
        if ($mpPresent -eq $null)
        {
            # If the MP wasn’t found, we skip the uninstallation of it.
            Echo "    $mp has already been uninstalled"
        }
        else
        {
            Echo "    * Uninstalling $mp "
            Uninstall-ManagementPack -managementpack $mp
        }
    }
  }
}

#######################################################################
# Remove 'all' of the JEE MPs as well as MPs that are dependent on them.
# The remove is done by finding the base MP (Microsoft.JEE.Library) and finding
# all MPs that depend on it.  This list will be presented to the user prompting
# if the user wants to continue and removing the list of presented MPs
function RemoveMPs
{param($mp)

  $listOfManagementPacksToRemove = Get-SCOMManagementPack -Name $mp -Recurse
  $listOfManagementPacksToRemove | format-table name

  $title = "Uninstall Management Packs"
  $message = "Do you want to uninstall the above $($listOfManagementPacksToRemove.Count) management packs and its dependent management packs"

  $yes = New-Object System.Management.Automation.Host.ChoiceDescription "&Yes", "Uninstall selected Management Packs."
  $no = New-Object System.Management.Automation.Host.ChoiceDescription "&No", "Do not remove Management Packs."
  $options = [System.Management.Automation.Host.ChoiceDescription[]]($yes, $no)

  $result = $host.ui.PromptForChoice($title, $message, $options, 0) 

  switch ($result)
  {
        0 {RemoveMPsHelper $listOfManagementPacksToRemove}
        1 {"Exiting without removing any management packs"}
  }
}

#######################################################################
# Begin Script functionality
if ($args.Count -ne 1)
{
  Echo "Improper command line arguments"
  Echo ""
  Echo "Specify a command line argument to either import or export MPs"
  exit 1
}
else
{
  $firstArg = $args[0]

  add-pssnapin "Microsoft.EnterpriseManagement.OperationsManager.Client";
  $cwd = get-location
  set-location "OperationsManagerMonitoring::";
  $mgConnection = new-managementGroupConnection -ConnectionString:$rootMS;

  RemoveMPs $firstArg

  set-location $cwd
  remove-pssnapin "Microsoft.EnterpriseManagement.OperationsManager.Client";  
}

[!メモ]

他のインポートした管理パックが削除しようとしている管理パックに依存する場合、依存管理パックのエラー メッセージが表示されます。 続行するには、依存管理パックを削除する必要があります。

Operations Manager により、選択した管理パックが削除されます。