Identify where to install SCOM Agent on SCCM Site hierarchy.

Hello..
We have a SCCM Site environment where there is one CAS site, other 5 Primary site servers and one DB server .All are in different machines (7 VMs).i need to monitor complete SCCM site hierarchy.Next on which machines i need to install SCOM Agent on both CAS
and all Primary Site Server.
Thanks
RICHA KM
 

Hi RICHA,
Hope it helps:
http://blogs.technet.com/b/kevinholman/archive/2012/12/11/monitoring-configmgr-2012-with-opsmgr.aspx
http://blogs.catapultsystems.com/cfuller/archive/2012/01/26/opsmgr-2012-scom-and-configmgr-2012-sccm-q-a.aspx
http://msandbu.wordpress.com/2012/04/23/monitoring-sccm-2012-via-scom-2012/
Natalya

Similar Messages

  • Installing scom agent shows error on HP unix

      Hello ,
    i am  trying  to install the scom agent on HP unix , getting below error , i tried manually also not able to succeed ..can anyone help on this .?
           * Installing fileset "scx.core,r=1.4.1-270" (1 of 1).
           * Beginning the Configure Execution Phase.
    mv: /etc/opt/microsoft/scx/conf/cimserver_planned.conf.swsave: cannot access: No such file or directory
    mv: /etc/opt/microsoft/scx/conf/cimserver_current.conf.swsave: cannot access: No such file or directory
    mv: /etc/opt/microsoft/scx/conf/scxlog.conf.swsave: cannot access: No such file or directory
    mv: /etc/opt/microsoft/scx/conf/scxrunas.conf.swsave: cannot access: No such file or directory
    Generating certificate with hostname="server1", domainname="server1.abc.in"
    Starting Microsoft SCX CIM Server
    cimserver not started: SSL Exception: Seed file '/var/opt/microsoft/scx/cimserver.rnd' does not exist.
    EXIT CODE: 1
    ERROR:   The "configure" script for "scx.core" failed (exit code "1").
             The script location was
             "/var/tmp/BAA023557/catalog/scx/core/configure".
           * This script had errors and the execution of this fileset
             cannot proceed until the problem is fixed.  Check the above
             output from the script for further details.

    Hi, We did some investigation into this and have determined that this occurs when “RAND_status” (an OpenSSL routine) returns 0, which means that the PRNG on this system does not have enough entropy to perform properly. When this happens, Pegasus will look
    for a file in the location specified by the error as a source of entropy to seed the PRNG with. We actually didn't catch that this was the case, sorry about that!
    Note that, in OM 2012R2, this was already fixed (since Pegasus is no longer used in that version).
    A solution is for you to generate a series of files that contain random bits (on a fast and highly used system, one with high entropy). There should be one file generated per system that is experiencing this problem, for security reasons (i.e. each generated
    file should be placed on only one system). Once these files are generated, they should be placed in the location specified in the error: '/var/opt/microsoft/scx/cimserver.rnd'.
    Permissions should also be set such that only root can read from this file.
    This should allow the agent to start. Note that we're unable to test this because we do not have a system that fails RAND_status, unfortunately. However, if you continue to have problems, please let us know, and we'll look into this further.
    In any case, a command that can be used to generate random bits is:
    openssl rand 2048 > cimserver.rnd
    Where 2048 is the number of bits generated. Let me know how this works out for you, thanks so much, and thanks for your patience.
    /Jeff

  • Reporting doesn't show the newly installed SCOM Agents

    Hello,
    I am running SCOM 2012 SP1 on Win2008 R2.
    I recently deployed scom agent to couple of machines the agents are showing up healthy and i can see the performance and health data from Monitoring tab but when i try to run report i can't find these new agents in the objects to add to report.
    Report
    it doesn't even query the agents.
    and on the SCOM manamgent server i see this error in event viewer not sure if it is related.
    Data was written to the Data Warehouse staging area but processing failed on one of the subsequent operations.
    Exception 'SqlException': Sql execution failed. Error 2627, Level 14, State 1, Procedure ManagedEntityChange, Line 368, Message: Violation of UNIQUE KEY constraint 'UN_ManagedEntityProperty_ManagedEntityRowIdFromDAteTime'. Cannot insert duplicate key in object
    'dbo.ManagedEntityProperty'. The duplicate key value is (528, Aug 25 2013  8:52AM). 
    One or more workflows were affected by this.  
    Workflow name: Microsoft.SystemCenter.DataWarehouse.Synchronization.ManagedEntity 
    Instance name: 08eb00a2-e227-4472-a368-a6e42a2bc502 
    Instance ID: {EEFCB078-6517-97CD-FA4F-8FCAB54E4930} 
    Management group: OPSMGR
    Regards,
    Maqsood
    Maqsood Mohammed Senior Systems Engineer MCITP-Enterprise Admin & ITILv3 Foundation Certified

    Ok, so at this point, without enabling logging and going to the extremes, I would attempt an uninstall and reinstall of the agents.  One at a time.  So remove the agents.  Reinstall one, and monitor what is happening on that server, and investagate
    it in the ops console.
    If you know what applications are on the box, and being discovered, look for the server in discovered inventory for those classes, etc.
    Before you do that, you can try to run this against the DW to see if there are any alerts associated with these two servers, that is if they ever raised alerts:
    USE OperationsManagerDW
    SELECT Alerts.AlertName, SUM(1) AS 'Alert Instances', SUM(Alerts.RepeatCount + 1) AS 'Alert + Repeat Count',
    CASE Alerts.MonitorAlertInd WHEN 1 THEN vMonitor.MonitorDefaultName WHEN 0 THEN vRule.RuleDefaultName ELSE 'Not found' END AS 'Rule or Monitor Name',
    CASE Alerts.MonitorAlertInd WHEN 1 THEN 'Monitor' WHEN 0 THEN 'Rule' ELSE 'Not Found' END AS 'Rule or Monitor', vManagedEntity.Path,
    vManagedEntity.DisplayName
    FROM Alert.vAlert AS Alerts INNER JOIN
    vManagedEntity ON Alerts.ManagedEntityRowId = vManagedEntity.ManagedEntityRowId LEFT OUTER JOIN
    vRule AS vRule ON Alerts.WorkflowRowId = vRule.RuleRowId LEFT OUTER JOIN
    vMonitor AS vMonitor ON Alerts.WorkflowRowId = vMonitor.MonitorRowId
    WHERE (Alerts.RaisedDateTime BETWEEN DATEADD(day, - 180, GETDATE()) AND GETDATE()) AND
    (Alerts.AlertName like '%Hub Servers In Retry Error%') and path like '%servername%'
    GROUP BY Alerts.AlertName, Alerts.MonitorAlertInd, vMonitor.MonitorDefaultName, vRule.RuleDefaultName, vManagedEntity.Path, vManagedEntity.DisplayName
    ORDER BY 'Alert Instances' DESC
    Regards, Blake Email: mengotto<at>hotmail.com Blog: http://discussitnow.wordpress.com/ If my response was helpful, please mark it as so, if it answered your question, then please also mark it accordingly. Thank you.

  • Power-shell script to install scom agent to multiple servers

    Hi
    we are trying to upgrade/install scom 2012 r2 agents to our windows servers (300+) server via powershell script.
    we are wanting the result to be written to csv file but we are facing difficulty in trying to find the object/value to look at to the put the condition against.
    we found the script that does for ping(below part script) result but we want to capture any failure. is there anything we can use to achieve what we ant to do?
    Thank you in Advance.
    -------------------Sample script--------------------------
    # Ping the computer
        $pingStatus = Get-WmiObject -Class Win32_PingStatus -Filter "Address = '$computer'";
        if($pingStatus.StatusCode -eq 0)
            #If computer is up, write message and launch agent install
    InstallSCOMAgent $Computer
    "Success , $computer." | out-file "D:\output.csv" -Append -NoClobber
    #Write-Host -ForegroundColor Green  "Reply received from $computer.";
        else
            #Else, just write a message indicating computer unreachable 
           "Failed , $computer." | out-file "D:\output.csv" -Append -NoClobber

    Just in case Newbie like me wondering how it can be done
    Here is the code (of course i got the help) simple but does what i want at this stage.  Next I am looking at how I can push the agents in parallel, this script will take fairly long time when trying to push to huge number of servers.
    #Import PowerShell Modules 
    import-module OperationsManager
    #Variables
    $InstallAccount = Get-Credential domainname\username
    $PrimaryMgmtServer = Get-SCOMManagementserver -Name <managementservername>
    #Connect to OpsMgr Management Group
    Start-OperationsManagerClientShell -ManagementServerName: <managementservername> -PersistConnection: $true -Interactive: $true;
    $list = Import-Csv -Path 'D:\temp\serverlist.csv'
    foreach ($entry in $list)
    $computer = $entry.ServerName
        try
        Install-SCOMAgent -Name $computer -PrimaryManagementServer $PrimaryMgmtServer -ActionAccount $InstallAccount -ErrorAction Stop
    #Write Success message into file
    "$computer, Success." | out-file "D:\temp\result.csv" -Append -NoClobber
        Catch
    #just write a failure message into file
            "$computer, Failled." | out-file "D:\temp\result.csv" -Append -NoClobber
    --------------------------End---------------------------------------------------------------------------

  • Could not install DPM agent on Secondry site DPM could not connect to the Service control manager : ID 33221

    Hi,
    We have two DPM 2012 R2 server installed at Primary and Secondary site Windows 2012 R2 installed.
    We need to Protected Primary DPM from Secondary DPM.
    When install DPM agent got error from secondary DPM console.
    “DPM could not connect to the Service Control Manager on these servers ID: 33221”
    Checked till now :
    Visual C++ redistributable installed.
    Checked DNS A record and both server can ping each other,
    Widows Firewall off on both servers.
    Net stop mpssvc ( Windows firewall service)
    sc \\Server1 query
     àable
    to see result
    Thanks,

    Hi
    You mention checking the DNS A record, are these 2 servers not in the same domain? Can you ping -a computername?
    Do you have any other AV software that have firewalls built in?
    Hope this helps. Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Package Update on DP's in SCCM site Hierarchy

    We have central site and couple of Primary sites ( SCCM 2007 R2)
    I get confused sometime with adding DP to applications.
    In our case the package (source files) are located on the the Central site server .
    And all the packages are created on the central site. Once the package is created at central site -- the package afyer sometime shows up at the Primary sites.
    However the DP is not added .
    I then go to my Primary Site console and add our local DP to the package .
    Does anyone know what happens if the Source files change in the package and i need to update the DP at my primary site . 
    I couldn't update the Package on the primary site as the option shows as greyed out.
    Also what is the way i could update the Package from Central site , somehow it only lets me update all DP's and not let me chooose one the one i need to update the package on.

    Do you mean you want to send the package to selected Distribution Points?
    Have you tried the option "Manage Distribution Points" rather than "Update Distribution Points"
    http://technet.microsoft.com/en-us/library/bb632672.aspx

  • WmiPrvSE.exe Consuming A Lot of RAM on 2012R2 DCs with SCOM Agent

    Good afternoon,
    I have three Windows Server 2012 R2 Domain controllers (AD DS, DNS, and DFS roles) and I'm running SCOM 2012 R2 Update Rollup 1 with all the latest management packs for Server 2012 R2, Active Directory, DNS, and DFS.
    When I install SCOM agents on these DCs, a WmiPrvSE process starts consuming a lot of memory until it reaches around 512MB.  At that point no one can RDP to the DCs, but we can enter-possession to get-process | sort ws and kill the offending WmiPrvSE.exe
    process.  When I uninstall the SCOM agent the server returns to normal.
    Other Windows Server 2012 R2 servers in our environment don't have this problem.  And when we had Windows Server 2012 (no R2) domain controllers this wasn't an issue.  My assumption is one of the management packs are an issue.
    I've seen other posts, but they are either related to older versions of Windows Server or not domain controllers.
    These are all the features I have installed on the DCs:
    Active Directory Domain Services                                                                                                                                                             
    DNS Server                                                                                                                                                                                   
    File and Storage Services                                                                                                                                                                    
    File and iSCSI Services                                                                                                                                                                      
    File Server                                                                                                                                                                                  
    DFS Namespaces                                                                                                                                                                               
    DFS Replication                                                                                                                                                                              
    File Server Resource Manager                                                                                                                                                                 
    Storage Services                                                                                                                                                                             
    .NET Framework 3.5 Features                                                                                                                                                                  
    .NET Framework 3.5 (includes .NET 2.0 and 3.0)                                                                                                                                               
    .NET Framework 4.5 Features                                                                                                                                                                  
    .NET Framework 4.5                                                                                                                                                                           
    WCF Services                                                                                                                                                                                 
    TCP Port Sharing                                                                                                                                                                             
    Group Policy Management                                                                                                                                                                      
    Remote Differential Compression                                                                                                                                                              
    Remote Server Administration Tools                                                                                                                                                           
    Role Administration Tools                                                                                                                                                                    
    AD DS and AD LDS Tools                                                                                                                                                                       
    Active Directory module for Windows PowerShell                                                                                                                                               
    AD DS Tools                                                                                                                                                                                  
    Active Directory Administrative Center                                                                                                                                                       
    AD DS Snap-Ins and Command-Line Tools                                                                                                                                                        
    DNS Server Tools                                                                                                                                                                             
    File Services Tools                                                                                                                                                                          
    DFS Management Tools                                                                                                                                                                         
    File Server Resource Manager Tools                                                                                                                                                           
    SMB 1.0/CIFS File Sharing Support                                                                                                                                                            
    User Interfaces and Infrastructure                                                                                                                                                           
    Graphical Management Tools and Infrastructure                                                                                                                                                
    Server Graphical Shell                                                                                                                                                                       
    Windows PowerShell                                                                                                                                                                           
    Windows PowerShell 4.0                                                                                                                                                                       
    Windows PowerShell 2.0 Engine                                                                                                                                                                
    Windows PowerShell ISE                                                                                                                                                                       
    Windows Server Backup                                                                                                                                                                        
    WoW64 Support       

    I have ever seen somebody has similar problem when import DNS MP to DC. Check whether it is this situation.
    Otherwise, Open Event Viewer to see if there are any useful info there.
    Last, apply the Hotfix below.
    http://support.microsoft.com/kb/2919355
    Juke Chou
    TechNet Community Support

  • Need to Automate the installation of SCOM agent through Script on workgroup machine in my Environment

    Hi Guys,
    Please advise me as i need to install SCOM agent on all workgroup machine automatically and not through Copying certificate and all which is quite hectic process, your help will be Appreciated,
    Thanks
    Amit Singh

    More info:
    How to deploying SCOM Agents to the Workgroup clients
    http://blogs.technet.com/b/csstwplatform/archive/2012/05/28/how-to-deploying-scom-agents-to-the-workgroup-clients.aspx
    Installing SCOM 2012 agent on a non-domain workgroup Windows Server
    http://himmetyildiz.blogspot.com/2013/11/installing-scom-2012-agent-on-non.html
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Conhost.exe & Powershell.exe utilizing more in SCOM agent server

    Hi All,
    Currently we installed SCOM agent in lot of servers. But from few agent server there are lot of "Conhost.exe & Powershell.exe" process utilizing more memory. When i restart the SCOM service in that agent those process got killed it came back to normal
    state. But after some time the process count got increased frequently. Due to this issue the server went to hung state.
    Kindly help me.
    Regards,
    Sandy.

    Hi, Compare OS components, Service Pack, patches between good and problem servers first. Also check SCOM agent patches for your version.

  • Scom agent errors from dmz computer

    hello everybody.
    i have installed scom agent on dmz computer. there is connection with scom rms server and after approving it listed in my agent managed computer list.
    but i have some erros in agent computer event log .
    hear is.
    Log Name:      Operations Manager
    Source:        Health Service Modules
    Date:          03/10/2014 09:17:13
    Event ID:      11903
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      srv-ns1
    Description:
    The Microsoft Operations Manager Expression Filter Module could not convert the received value to the requested type.
    Property Expression: Property[@Name='QueriesResponded']
    Property Value: Property[@Name='QueriesResponded']
    Conversion Type: DataItemElementTypeInteger(5)
    Original Error: 0x80FF005A
    One or more workflows were affected by this.  
    Workflow name: Microsoft.Windows.Server.DNS.2012R2.Monitor.DNSSEC.NameResolutionQueries
    Instance name: ameriaam.am on srv-ns1
    Instance ID: {CA3BB4AA-6AD9-B0CD-D35E-CF17BAC9BCE2}
    Management group: AmeriabankMG
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Health Service Modules" />
        <EventID Qualifiers="49152">11903</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-03T05:17:13.000000000Z" />
        <EventRecordID>1051</EventRecordID>
        <Channel>Operations Manager</Channel>
        <Computer>srv-ns1</Computer>
        <Security />
      </System>
      <EventData>
        <Data>AmeriabankMG</Data>
        <Data>Microsoft.Windows.Server.DNS.2012R2.Monitor.DNSSEC.NameResolutionQueries</Data>
        <Data>ameriaam.am on srv-ns1</Data>
        <Data>{CA3BB4AA-6AD9-B0CD-D35E-CF17BAC9BCE2}</Data>
        <Data>Property[@Name='QueriesResponded']</Data>
        <Data>Property[@Name='QueriesResponded']</Data>
        <Data>DataItemElementTypeInteger(5)</Data>
        <Data>0x80FF005A</Data>
      </EventData>
    </Event>
    Log Name:      Operations Manager
    Source:        Health Service Modules
    Date:          03/10/2014 09:17:13
    Event ID:      11903
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      srv-ns1
    Description:
    The Microsoft Operations Manager Expression Filter Module could not convert the received value to the requested type.
    Property Expression: Property[@Name='QueriesResponded']
    Property Value: Property[@Name='QueriesResponded']
    Conversion Type: DataItemElementTypeInteger(5)
    Original Error: 0x80FF005A
    One or more workflows were affected by this.  
    Workflow name: Microsoft.Windows.Server.DNS.2012R2.Monitor.DNSSEC.NameResolutionQueries
    Instance name: esazatem.am on srv-ns1
    Instance ID: {8A7B8118-E730-492F-30BD-E754979CF884}
    Management group: AmeriabankMG
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Health Service Modules" />
        <EventID Qualifiers="49152">11903</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-03T05:17:13.000000000Z" />
        <EventRecordID>1049</EventRecordID>
        <Channel>Operations Manager</Channel>
        <Computer>srv-ns1</Computer>
        <Security />
      </System>
      <EventData>
        <Data>AmeriabankMG</Data>
        <Data>Microsoft.Windows.Server.DNS.2012R2.Monitor.DNSSEC.NameResolutionQueries</Data>
        <Data>esazatem.am on srv-ns1</Data>
        <Data>{8A7B8118-E730-492F-30BD-E754979CF884}</Data>
        <Data>Property[@Name='QueriesResponded']</Data>
        <Data>Property[@Name='QueriesResponded']</Data>
        <Data>DataItemElementTypeInteger(5)</Data>
        <Data>0x80FF005A</Data>
      </EventData>
    </Event>
    Log Name:      Operations Manager
    Source:        Health Service Modules
    Date:          03/10/2014 09:17:12
    Event ID:      11903
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      srv-ns1
    Description:
    The Microsoft Operations Manager Expression Filter Module could not convert the received value to the requested type.
    Property Expression: Property[@Name='QueriesResponded']
    Property Value: Property[@Name='QueriesResponded']
    Conversion Type: DataItemElementTypeInteger(5)
    Original Error: 0x80FF005A
    One or more workflows were affected by this.  
    Workflow name: Microsoft.Windows.Server.DNS.2012R2.Monitor.DNSSEC.NameResolutionQueries
    Instance name: ameriagroup.am on srv-ns1
    Instance ID: {C57A482A-A0B6-CC89-0855-FD43B75FCE26}
    Management group: AmeriabankMG
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Health Service Modules" />
        <EventID Qualifiers="49152">11903</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-03T05:17:12.000000000Z" />
        <EventRecordID>1047</EventRecordID>
        <Channel>Operations Manager</Channel>
        <Computer>srv-ns1</Computer>
        <Security />
      </System>
      <EventData>
        <Data>AmeriabankMG</Data>
        <Data>Microsoft.Windows.Server.DNS.2012R2.Monitor.DNSSEC.NameResolutionQueries</Data>
        <Data>ameriagroup.am on srv-ns1</Data>
        <Data>{C57A482A-A0B6-CC89-0855-FD43B75FCE26}</Data>
        <Data>Property[@Name='QueriesResponded']</Data>
        <Data>Property[@Name='QueriesResponded']</Data>
        <Data>DataItemElementTypeInteger(5)</Data>
        <Data>0x80FF005A</Data>
      </EventData>
    </Event>

    These errors are coming from the DNS 2012 R2 MP. Is this server in your DMZ a DNS 2012 R2 Server? if not, it should go away once the discovery for this mp runs or re-runs, and the SCOM agent stops running those monitors on that agent. If it does not go away,
    stop the SCOM Agent, and clear the agent cache then start up the agent again.
    Hope this helps!
    Scott Moss MVP (Operations Manager) President - System Center Virtual Users Group |Vice President - Atlanta Southeast Management Users Group (ATL SMUG)
    Please remember to click “Mark as Answer” on the post that helps you!
    my new blog om2012.wordpress.com

  • Identify SCOM agents that do not have an SCCM client

    I would like to identify SCOM agents that do not have an SCCM client installed.  I have the SCCM mp installed as well as the SCCM client health mp provided by Tao Yang installed.  I believe I could create my own registry discovery to identify
    if the SCCM install exists, but was wondering if there was a way that could leverage the existing SCCM mps I have in place instead of duplicating efforts.  

    Try running a report in SCCM and then check it against the windows server group in SCOM. 
    Check it into excel and then use the highlight duplicates. This should give you list of servers that are missing either SCCM or SCOM agent.
    This is a manual process but you could look at scripting this:
    extract SCCM server list (Export -CMDeviceCollection) 
    extract SCOM server list (See:
    http://scom-2012.blogspot.com.au/2013/11/scom-2012-powershell-retrieving-list-of.html)
    $Group = Get-SCOMGroup | where {$_.DisplayName -eq "Windows Computers
    $Members = $Group.GetRelatedMonitoringObjects()
    $Members
    compare lists
    email/save report
    Schedule it.
    Cheers,
    Martin
    Blog:
    http://sustaslog.wordpress.com 
    LinkedIn:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • SCOM agent install fails Error 80070035 - the network path was not found

    I have deployed SCOM 2012 agents to most servers (2008, 2008 R2, 2012, 2012R2) in our estate but some either fail to install or are not monitored. I assume the two problems are related, but for now I am concentrating on the servers that fail completely.
    Installation is from the Discovery Wizard and I have about 20 servers that fail of various server versions.
    So looking at one specific server that is failing to install the agent - a 2008 standard service pack 2
    The firewall in on and file and printer sharing is enabled for domain, remote administration is enabled for domain
    I added a specific rule to allow TCP 5723 and 5724
    DCOM is enabled
    I can Ping the target server from the SCOM server by both name and FQDN - both return the same IP and our DNS server has only one entry for this server
    I can browse to the admin share \\server\C$ from the SCOM Server, using the same account that I specify for the agent install that is a domain admin with rights on this server (and on the other servers the agent
    did install to) and the server has plenty of disk space available
    I am not sure what else to look at so would welcome any ideas
    Thanks

    Hi Petro,
    I have a Agent installation failure cheat sheet, For your error 80070035 it is said to perform a manual installation.
    So i would like to understand which version of SCOM is this ? 2007 R2 or 2012 or 2012 r2 ?
    Also check if your agents have the WMI service started and enabled ?
    Also if yours is a SCOM 2007 R2 do you have a RMS & MS in your management group ? If yes then Pushing the agent installation from MS may cause such issue. So would suggest you push the installation from RMS.
    Also check if your Network connectivity meets the minimum requirement as recommended by SCOM. Below is applicable for Both SCOM 2007 R2 & SCOM 2012 & 2012 R2.
    Component A
    Component B
    Minimum Requirement
    Root management server or management server
    Agent
    64 Kbps
    Root management server or management server
    Agentless
    1024 Kbps
    Root management server or management server
    Database
    256 Kbps
    Also check if you have any Anti virus / Firewall which is blocking the install / communication. If yes disabe or add the "Monitoringhost.exe to the safe list or what your feature is.
    Check if you have another IP assigned to the NIC card and remove it tempraurly andchecl.
    Also post the event logs of the Agents which are in not monitored state for analysis.
    SCOM Agent installation failure error codes
    Error
    Error Code(s)
    Remediation Steps
    The MOM Server could not execute WMI Query "Select * from Win32_Environment where
    NAME='PROCESSOR_ARCHITECTURE'" on computer server.domain.com
    Operation: Agent Install
    Install account: domain\account
    Error Code: 80004005
    Error Description: Unspecified error
    80004005
    1.  Check the PATH environment variable.  If the PATH statement is very long, due to lots of installed third party software - this can
    fail.  Reduce the path by converting any long filename destinations to 8.3, and remove any path statements that are not necessary.
    2.  The cause
    could be corrupted Performance Counters on the target Agent.
    To rebuild all Performance counters including extensible and third party counters in Windows Server 2003, type the following commands at a command
    prompt. Press ENTER after each command.
    cd
    \windows\system32
    lodctr /R
    Note /R is uppercase.
    Windows Server 2003 rebuilds all the counters because it reads all the .ini files in the C:\Windows\inf\009 folder for the English operating system.
    How to manually rebuild Performance Counter Library values
    http://support.microsoft.com/kb/300956
    3.  Manual agent install. 
    The MOM Server could not execute WMI Query "Select * from Win32_OperatingSystem" on
    computer “servername.domain.com”
    Operation: Agent Install
    Install account: DOMAIN\account
    Error Code: 800706BA
    Error Description: The RPC server is unavailable.
    8004100A
    800706BA
    1.  Ensure agent push account has local admin rights
    2.  Firewall is blocking NetBIOS access
    3.  Inspect WMI health and rebuild repository if necessary
    4.  Firewall is blocking ICMP  (Live OneCare)
    5.  DNS incorrect
    The MOM Server failed to open service control manager on computer "servername.domain.com". Access is Denied
    Operation: Agent Install
    Install account: DomainName\User Account
    Error Code: 80070005
    Error Description: Access is denied.
    80070005
    80041002
    1.  Verify SCOM agent push account is in Local Administrators group on target computer.
    2.  On Domain controllers will have to work with AD team to install agent manually if agent push account is not a domain admin.
    Disable McAfee antivirus during push
    The MOM Server failed to open service control manager on computer "servername.domain.com".
    Therefore, the MOM Server cannot complete configuration of agent on the computer.
    Operation: Agent Install
    Install account: DOMAIN\account
    Error Code: 800706BA
    Error Description: The RPC server is unavailable.
    800706BA
    1.  Firewall blocking NetBIOS ports
    2.  DNS resolution issue.  Make sure the agent can ping the MS by NetBIOS and FQDN.  Make sure the MS can ping the agent by NetBIOS
    and FQDN
    3.  Firewall blocking ICMP
    4.  RPC services stopped.
    The MOM Server failed to acquire lock to remote computer servername.domain.com. This means there is already an agent management operation proceeding
    on this computer, please retry the Push Agent operation after some time.
    Operation: Agent Install
    Install account: DOMAIN\account
    Error Code: 80072971
    Error description: Unknown error 0x80072971
    80072971
    This problem occurs if the LockFileTime.txt file is located in the following folder on the remote computer:
    %windir%\422C3AB1-32E0-4411-BF66-A84FEEFCC8E2
    When you install or remove a management agent, the Operations Manager 2007 management server copies temporary files to the remote computer. One
    of these files is named LockFileTime.txt. This lock file is intended to prevent another management server from performing a management agent installation at the same time as the current installation. If the management agent installation is unsuccessful and
    if the management server loses connectivity with the remote computer, the temporary files may not be removed. Therefore, the LockFileTime.txt may remain in the folder on the remote computer. When the management server next tries to perform an agent installation,
    the management server detects the lock file. Therefore, the management agent installation is unsuccessful.
    http://support.microsoft.com/kb/934760/en-us
    The MOM Server detected that the following services on computer "(null);NetLogon" are not running. These services are required for push
    agent installation. To complete this operation, either start the required services on the computer or install the MOM agent manually by using MOMAgent.msi located on the product CD.
    Operation: Agent Install
    Remote Computer Name: servername.domain.com Install account: DOMAIN\account
    Error Code: C000296E
    Error Description: Unknown error 0xC000296E
    C000296E
    1.  Netlogon service is not running.  It must be set to auto/started
    The MOM Server detected that the following services on computer
    "winmgmt;(null)" are not running
    C000296E
    1.  WMI services not running or WMI corrupt
    The MOM Server detected that the Windows Installer service (MSIServer) is disabled on computer "servername.domain.com". This service is
    required for push agent installation. To complete this operation on the computer, either set the MSIServer startup type to "Manual" or "Automatic", or install the MOM agent manually by using MOMAgent.msi located on the product CD.
    Operation: Agent Install
    Install account: DOMAIN\account
    Error Code: C0002976
    Error Description: Unknown error 0xC0002976
    C0002976
    1.  Windows Installer service is not running or set to disabled – set this to manual or auto and start it.
    The Agent Management Operation Agent Install failed for remote computer servername.domain.com.
    Install account: DOMAIN\account
    Error Code: 80070643
    Error Description: Fatal error during installation.
    Microsoft Installer Error Description:
    For more information, see Windows Installer log file "C:\Program Files\System Center Operations Manager 2007\AgentManagement\AgentLogs\servernameAgentInstall.LOG
    C:\Program Files\System Center Operations Manager 2007\AgentManagement\AgentLogs\servernameMOMAgentMgmt.log" on the Management Server.
    80070643
    1.  Enable the automatic Updates service…. Install the agent – then disable the auto-updates service if desired.
    Call was canceled by the message filter
    80010002
    Install latest SP and retry. One server that failed did not have Service pack installed
    The MOM Server could not find directory \\I.P.\C$\WINDOWS\. Agent will not be installed on computer "name". Please verify the required
    share exists.
    80070006
    1.  Manual agent install
    Possible locking on registry?
    http://www.sysadmintales.com/category/operations-manager/
    Try manual install.
    Verified share does not exist.
    The network path was not found.
    80070035
    1.  Manual agent install
    The Agent Management Operation Agent Install failed for remote computer "name". There is not enough space on the disk.
    80070070
    1.  Free space on install disk
    The MOM Server failed to perform specified operation on computer "name". The semaphore timeout period has expired.
    80070079
    NSlookup failed on server. Possible DNS resolution issue.
    Try adding dnsname to dnssuffix search list.
    The MOM Server could not start the MOMAgentInstaller service on computer "name" in the time.
    8007041D
    80070102
    NSlookup failed on server. Possible DNS resolution issue.
    Verify domain is in suffix search list on management servers.
    The Agent Management Operation Agent Install failed for remote computer "name"
    80070643
    1.  Ensure automatic updates service is started
    2.  Rebuild WMI repository
    3.  DNS resolution issue
    The Agent Management Operation Agent Install failed for remote computer "name". Another installation is already in progress.
    80070652
    Verify not in pending management. If yes, remove and then attempt installation again.
    The MOM Server detected that computer "name" has an unsupported operating system or service pack version
    80072977
    Install latest SP and verify you are installing to Windows system.
    Not discovered
    Agent machine is not a member of domain
    Ping fails
    1.  Server is down
    2.  Server is blocked by firewall
    3.  DNS resolving to wrong IP.
    Fail to resolve machine
    1.  DNS issue
    The MOM Server failed to perform specified operation on computer "name". Not enough server storage…
    8007046A
    1.  This is typically a memory error caused by the remote OS that the agent is being installed on.
    There are currently no logon servers available to service the logon request.
    8007051F
    1.  Possible DNS issue
    This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version
    of the Windows Installer service.
    8007064D
    1.  Install Windows Installer 3.1
    The network address is invalid
    800706AB
    Possible DNS name resolution issue.
    Tried nslookup on server name and did not get response.
    Verify domain is in suffix search list on management servers.
    The MOM Server failed to perform specified operation on computer servername.domain.com
    80070040
    1.  Ensure agent push account has local admin rights
    The MOM Server detected that the actual NetBIOS name SERVERNAME is not same as the given NetBIOS name provide for remote computer SERVERNAME.domain.com.
    80072979
    1.  Correct DNS/WINS issue.
    2.  Try pushing to NetBIOS name
    Gautam.75801

  • Issue with SQL Agent when install SCOM 2012 R2

    Hi all,
    i'm try to install SCOM 2012 R2 with all components (Mgmt Server, Operation Console, Web Console, Reporting Server)
    Everything is fine, except Reporting Server. I have attached the picture below
    I have also check the SQL Server Agent in SQL Server Configuration Manager. It has already started. But... i dont know why?
    Is there anyone know what wrong it is??

    Many thanks Gautam,
    i have checked again in Repoting Services Configuration Manager & change the database to the local SCOM
    Cause i'm using database for management server, dataware house on SCCM. So reporting service automatic set the database on SCCM also.... :(
    So now i will show everyone who try to install SCOM
    For the Management & DatawareHouse database --> you could install on any SQL Server (open port 1433)
    For the Reporting Services:
    On the local SCOM, install SQL Server with these components (SQL Engine: SQL Agent; SQL Reporting)
    After install SQL successfully, login to the Reporting Services Configuration Manager to set:
    First, create the new database on local SCOM
    Second, Web Service URL. login to the IIS to create self-signed certification for own SCOM. then turn back too Web Service URL to create SSL Certification
    Set SQL Agent service to Automatic, then start
    so, that's all. I'm crazy with this issue for a whole day :)

  • SCOM Agent install \ deployment query?

    Hi All
    I have a query regards best practices.  Within our environment we will have a number of Build Environments (all within the same domain), which will involve servers being built, decommissioned and rebuilt for application testing teams.
    Query is how best to handle the install\life-cycle of the SCOM Agent with regards to this scenario?
    Just looking to see if others have had experience of this type of scenario and best practices \ experiences etc
    Any thoughts much appreciated.
    Kind Regards
    Andrew

    Just have a couple of questions/suggestions:
    Do the different servers have some sort of naming convention ie:
    Prod servers have: PRD in the name
    dev servers have: DEV in the name
    ect.... If so then my suggestion is to create a number of groups ie Prod Servers, Dev Servers, Test Servers ect. and have these groups auto populate. You can then configure overrides for these groups for alerts
    to manage alert volume/escalations.
    As for install are these servers windows server/ unix servers or a mix?
    Number of ways you could try managing installs is to script the install (Google SCCM SCOM agent deployment script for some hints)
    Consider if you want to auto approve agents or manually approve them so you know when servers are being added or removed.
    If servers are being removed you could look at scripting a removal of the server from SCOM (have a look at http://social.technet.microsoft.com/Forums/en-US/c4dcfce6-b241-4435-8f8b-1276814c455e/scom-2012-powershell-command-to-remove-agent)
    If you could detail what your setup is or what you would like to be able to do we could make more suggestions.
    Cheers,
    Martin
    Blog:
    http://sustaslog.wordpress.com 
    LinkedIn:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Where is unix/linux agent located on scom 2012 r2 server

    hey there,
    my boss tried to install scom unix agent manually, and asked me where the unix agent located on scom 2012 r2 server.
    Is it "GetOSVersion.sh" the one he looks for? If it is not, then wherw it is located
    I'm a Windows guy and have no idea what that .sh file is. Please help~~

    The "GetOSVersion.sh" is a script that is first executed when you try to push an agent out to
    a unix/linux server. It then tells SCOM what version of the agent it needs to download and install.
    As for the location:
    Management Server: \System Center Operations Manager\Server\AgentManagement\UnixAgents\DownloadedKits
    Gateway Server: \System Center Operations Manager\Gateway\AgentManagement\UnixAgents\DownloadedKits
    I suggest to push the agent out vs manual install as you then don't need to worry about manually signing certificates/installing agent. Its saves considerable amount of
    time and your then managing your agents from a central location. 
    Oh and as Steve mentioned make sure you download the Unix Management pack bundle (MPB) and not from the online catalog. This is due to the MPB is what actually contains the agents where as the catalog is just the management packs.
    Cheers,
    Martin
    Blog:
    http://sustaslog.wordpress.com 
    LinkedIn:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

Maybe you are looking for

  • TS1538 Does Ipod Nano (3rd gen) not work with Windows 8?

    I have tried all of the uninstall and reinstalls, upgrades, reset of ipod nano, etc.... Cannot get computer or itunes to recognize ipod nano.  Does this device work with Windows 8?

  • Disk utility says repair needed but repair grayed out

    I ran a disk utility verification, which indicated that repair was necessary.  However the repair option was grayed out.  How do I effect a repair?

  • CS3 Color Management Issue

    No matter what I try when I open my pictures in photoshop, they look different than they did in ACR. I have gone throuhg all the color settings and even made sure to synchronize my settings between the two. Still, when I open an image that I've edite

  • 10.5.x mail server migration to 10.6 (non upgrade)

    Hi all, So I have been reading up on the various issues with upgrading 10.5.x servers to 10.6 however my question involves going from a 10.5.x server to a clean 10.6 server (non upgrade install). I generally start fresh with a new OS and migrate the

  • F110 printing checks at payment run stage

    Hi All, while hitting payment run button(F110), system is scheduling background job which is including all 3 steps: SAPF110S SAPFPAYM_SCHEDULE RFFOUS_C thus as soon as user hit pmnt run SAP is printing check also. thus printout tab is not useful. thi