For the System Center Operations Manager 2007 configuration item (CI) connector to function correctly, you have to import a set of management packs into System Center Service Manager 2012. The management packs and the Windows PowerShell script that you need to import the management packs are in the Service Manager 2012 installation folder. The default installation folder is \Program Files\Microsoft System Center\Service Manager 2010\Operations Manager Management Packs. Use the following procedure to import the management packs into Service Manager 2012.

To import management packs for the Operations Manager 2007 CI connector

  1. On the computer that is hosting the Service Manager management server, on the Windows desktop, click Start, point to Programs, point to Windows PowerShell 1.0, right click Windows PowerShell, and then click Run as administrator.

  2. In Windows PowerShell, type the following command, and then press ENTER.

      Copy Code
    Get-ExecutionPolicy
    
  3. Review the output and note the current execution policy setting.

  4. Type the following commands, and then press ENTER after each.

      Copy Code
    Set-ExecutionPolicy Unrestricted
    
      Copy Code
    Set-Location \"Program Files\Microsoft System Center\Service Manager 2010\Operations Manager Management Packs"
    
  5. Type the following command, and then press ENTER.

      Copy Code
    .\installOMMPs.ps1
    

    This command starts the Windows PowerShell script that installs the management packs. Wait for the management packs to be imported.

  6. Change the execution policy back to the value that you noted in step 3. For example, type the following command to set the execution policy to Restricted, and then press ENTER.

      Copy Code
    Set-ExecutionPolicy Restricted
    
  7. To exit Windows PowerShell, type the following command, and then press ENTER.

      Copy Code
    Exit