Error to import Exchange 2010 MP on SCOM 2012 > HotfixValidation.vbs ??

Unanswered Error to import Exchange 2010 MP on SCOM 2012 > HotfixValidation.vbs ??

  • Tuesday, June 26, 2012 9:12 AM
     
     

    I get this error when I want to import exchange 2010 MP (June 2012 Released). I've tried to modify database files, but i get same error. Also, I can see other warning on event viewer. But I can see the MP installed on scom console !!!

    I think that this script "HotfixValidation.vbs" tries to check SCOM 2007 hotfixes, but I use scom 2012. Maybe this the error to import MP, I don't know...

All Replies

  • Tuesday, June 26, 2012 3:56 PM
    Moderator
     
     

    Maybe this thread will help:

    http://social.technet.microsoft.com/Forums/en-NZ/operationsmanagermgmtpacks/thread/12802a01-5258-40df-9da4-9690fff53b18


    Regards, Blake Email: mengotto<at>hotmail.com Blog: http://discussitnow.wordpress.com/

  • Tuesday, June 26, 2012 5:20 PM
     
     

    It NOT solves the problem... Thanks

  • Monday, July 16, 2012 5:40 AM
     
     

    any update?

    Could anyone simulate/test my problem?

  • Monday, July 16, 2012 5:53 AM
    Moderator
     
     
    Might be hard since the Exchange MP was pulled and has not been released again yet.

    Regards, Blake Email: mengotto<at>hotmail.com Blog: http://discussitnow.wordpress.com/

  • Friday, April 05, 2013 7:22 AM
     
     

    I am also having problems with one exchange 2010 server. We have other exchange servers with similar configurations but only one does not get added to the Exchange monitoring node. The agent apears to be healthy and its detected in windows computers monitor. However I get the same warning on the exch server in the OM log as the one posted here... any ideeas what might be wrong?


    http://mariusene.wordpress.com/

  • Wednesday, May 15, 2013 3:18 PM
     
     

    From what I can tell the Hotfixvalidation.vbs code is only checking for SCOM 2007 SP1, and R2 agent versions. It has no logic to go beyond that and thus, causes an error when running the script.  See the code below.  The hotfixVersion variable is never set when we have a SCOM 2012 agent on the machine.

    'SP1 version of SCOM starts with 6.0 and R2 starts with 6.1
    If (Left(OpsMgrVersion,3) = "6.0") Then
            hotfixVersion = SP1FileVersion
     kbLink = "http://go.microsoft.com/fwlink/?LinkID=167911"
    ElseIf (Left(OpsMgrVersion,3) = "6.1") Then
            hotfixVersion = R2FileVersion
     kbLink = "http://go.microsoft.com/fwlink/?LinkID=167912"
    End If

    'If versioncompare function returns 2, the hotfix version is higher than the installed version
    If healthServiceVersion <> "-1" Then
        If 2 = VersionCompare(healthServiceVersion,hotfixVersion) Then
         ScomHotFixStatus = "BAD"
        End If
    End If