Disable monitor in Operation Manager for 1 host

Hi,
I need to create a poweshell script that disable a monitor for a given host.
With the Disable-SCOMMonitor, I managed to disable it for a class, not an individual host. It looks feasable since you can disable it for a specific host of a class in the console.
So far I've got:
$Host =  Read-Host "Enter computer name"
$MonitorName = "Total CPU Utilization Percentage"
$Monitors=Get-SCOMMonitor -ComputerName $strComputerName | where {$_.DisplayName -eq $MonitorName}
$MP = Get-SCOMManagementPack -DisplayName "BMA - Override - Orchestrator_Generated" | where {$_.Sealed -eq $False}
foreach ($Monitor in $Monitors) {
     $Instance3 = Get-SCOMclass -name $Monitor.target.identifier.path | Get-SCOMClassInstance | where {$_.Path -eq $Host}
     Disable-SCOMMonitor -Instance $Instance3 -ManagementPack $MP -Monitor $Monitor -Enforce
This does not return any error (besides when $Instance3 is empty, but that's an easy fix), but does not disable the monitor either...
I would appreciate some help to get that working :)
Thank you !

Hi,
I am a little confused, as you have the specified the monitor name as Total CPU Utilization Percentage, why are you still try to get an array of monitors?
If you want to disable one monitor for a computer, please try follow code, you may need to change some parameters according to your environment:
$Host = Read-Host "Enter computer name"
$MP = Get-SCOMManagementPack -DisplayName "BMA - Override - Orchestrator_Generated" | where {$_.Sealed -eq $False}
$Instance = Get-SCOMclass -displayname "The class name for the instance“| Get-SCOMClassInstance | where {$_.Path -eq $Host}
$Monitor = Get-SCOMMonitor -DisplayName "Total CPU Utilization Percentage"
Disable-SCOMMonitor -instance $Instance -ManagementPack $MP -Monitor $Monitor -Enforce
Hope this helps.
Regards,
Yan Li
Regards, Yan Li

Similar Messages

  • VMM Agent Not Monitored By Operations Manager

    I am getting this alert 
    VMM Agent Not Monitored By Operations Manager
    I have VMM 2012 sp1 and SCOM 2012 sp1 so please kindly tell me the solution.

    For VMM Agent Not Monitored By Operations Manager, Please, Send if there is error in event viewer
    Also Check below link to help you in Fix your Issue
    http://blogs.technet.com/b/operationsmgr/archive/2012/01/23/potential-issues-with-vmm-2012-opsmgr-integration.aspx
    For Configuration of Operation Manager to monitor VMM, Refer to below link
    http://www.systemcentercentral.com/configuring-pro-integration-between-opsmgr-2012-and-vmm-2012/
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer".

  • Can I disable Creative Cloud App Manager for only 1 account on Mac?

    My Mac has multiple, managed user accounts. The CC application manager is installed globally for all user accounts, and constantly phones in on those user accounts, including one that is managed and restricted. Is there any way to disable the CC application manager for just one of the user accounts so that I don't see the constant warnings about attempts to contact restricted sites?
    Thanks.

    Mac migration (or Time Machine) do not work with Cloud program activations due to hidden files
    Sign out of your account... Uninstall... run the Cleaner...
    -Restart your computer... Sign in to your account... Reinstall
    -using the cleaner after uninstalling and before reinstalling may help
    -http://helpx.adobe.com/creative-cloud/help/install-apps.html (and uninstall)
    -http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html

  • Unified Operations Manager for Version 9.0 clear the events

    Please let me know the procedure to clear the events of the Operations Manager  9.0.

    Hello Anthony,
    Lets pick up the example of Standard LRG in Pre 10.0.
    As a use case we used "LRG" to route calls using Local gateway, preferebly.
    For Example:
    If administrator wish to create a route to a PSTN/CUCM B from particular site then he could simply have a Route list with Standard Local Route Group.
    If the administrator has to add another emergency route to CUCM C/PSTN then using Standard Local Route Group would not help and he would have to make site specific Route list and Route patterns.
    eg: 8.XXXX pattern would be used by device on site A to reach site E using RG_A_To_E
          7.XXXX Pattern would be used by device on site B to reach site E using RG_B_To_E
    With the Multiple LRG Enhancement in CUCM 10.0
    On the Device Pool page, We can choose to associate the Emergency Route with a route group or leave it blank.
    This will reduce the number of route list and route patters to be created.
    EX.
    Phone 3 calls Phone 5 via Route List “Route List to Site E”
    When Phone 3 (DP_C) calls Phone 5 using route pattern 8.XXXX
    Route list layer check that the first route group in the preference order is “Emergency Route Group (Local Route Group)”.
    It then checks the route group associated with “Emergency Route Group” on Device Pool DP_C.
    There is no Route group associated with “Emergency Route Group”.
    Hence the Route list layer would check of for next member in the route list And try routing the call via “RG_General”.
    **I hope this explains, if any doubts, please, let me know and we can have a quick call to discuss.
    Regards
    Amit Singh

  • EP Monitoring in Solution Manager

    Dear Experts,
    I would like to create a monitoring system using our solution manager. Therefore i would like to know the ways of doing it. I also would like to know what can be monitored in Solution manager for EP(enterprise portal). If possible i would like to monitor from Server to Application level, meaning to say i would like to know all the components that can be monitored using SolMan such as CPU utilization , disk space availability and from application point of view, i would like to view /receive alert that can show number user locked in EP an so on.
    Our EP is running on version 7.0 and on SP15.
    Regards
    Ramesh

    Hello Ramesh,
    Please use the following links.
    Monitoring with the SAP Solution Manager
    http://help.sap.com/saphelp_nw04/helpdata/en/1a/40f83ee0e66856e10000000a114084/frameset.htm
    SAP How-to Guides
    https://www.sdn.sap.com/irj/sdn/howtoguides#section4
    SAP NetWeaver 7.0
    http://help.sap.com/nw70/
    Also check service.sap.com/instguidesnw04s --> operations and look for Supp. Setup Guide - Solution Manager Diagnostics NW04 SPS 15
    Hope the above links helps you.
    Cheers,
    Satish.
    Edited by: Satish Arram on Oct 8, 2008 5:49 PM

  • Operations Manager powershell health check on specific items

    Hello,
    I am trying to write up a Operations Manager PowerShell script that runs automatically and checks the current health status of a group object but only the health status of certain columns listed in the Operations Manager such as "Agent" or "Windows
    Server 2008 Logical Disk". I have written up the following after setting the group object whose health I wish to check in Operations Manager to "$gp". Also note I am only looking for systems in that group object that show an unhealthy state
    hence I put in the "Where-Object" to look for anything that is not showing a healthy status.
    Get-SCOMMonitoringObject -Group $gp | select HealthState,Displayname | Where-Object {$_.HealthState -notlike "Success"}
    This brings back the overall health state of each system in the group object but I do not want the overall health. I wish to only see the health status of say the "Windows Server 2003 Operating System" column in Operations Manager for those systems.
    I would like to know if there is a simple way to accomplish this using the built in Powershell cmdlets which come with Operations Manager when it installs. If I could also get an example of what the syntax of this would look like that would be a great help.
    Thanks!

    Thank you for the responses!
    I am currently running the 2012 edition of System Center Operations Manager.
    The above code posted by
    Alexey Zhuravlev runs for me but it does not seem to be passing anything through for the health state. All I get is a list of the system names but no health state. I believe this is because the Get-SCOMClass cmdlet does not have a "HealthState"
    field to pass. It does have a "Status" field which I am wondering if that might work for me if I pipe in maybe the name of the system I would like to view.
    I will continue on and play around with what I have so far.
    Any further help would be greatly appreciated!

  • Is there any CISCO Network tools with syslog monitoring and and managment included?

    I am looking for a tool that can do monitoring, syslog and managment for cisco equipment. Or kindly recommand good individual tools.

    You can download a trial. Use this link as it also might ask you to login
    http://software.cisco.com/download/release.html?mdfid=284396249&softwareid=284272932&release=1.2.1&relind=AVAILABLE&rellifecycle=&reltype=latest
    Sent from Cisco Technical Support iPhone App

  • Basic Network Monitoring for Cisco Operation Manager 2012

    Hello,
    Please bear with me as i'm new the Operations Manager 2012 world. I've just installed operations manager 2012 in our environment and i've setup a network management point. I've discovered my networking gear which is primarily cisco equipment. The devices
    are appearing as CERTIFIED. It appears that they are HEALTHY however in most cases i'm getting some arbitrary monitors. I have a 6509 switch where memory and processor appear to be being monitored out of the box. I'm receiving alerts and everything.
    My question is how do I turn on monitoring for other discovered components. I seem to understand I can make SNMP monitors under the authoring pane if i know the OID. That sounds like it'd be tedious work for such a simple and basic monitor. However I was
    under the impression I would be able to monitor a lot of these components with a simple click of a button. Is this not the case? I'm primarily interested in monitoring the state and performance of particular interfaces as well as the state of the power supplies
    in our switches. Is there a guide that explains the basic principles of this. What are my options?
    Thanks!
    -Brandon

    Hi,
    You will need to edit the discovery and broaden the range. You may use recursive discovery.
    Recursive discovery will try to discover any other network devices it knows about through its Address Routing Protocol (ARP) table, its IP address table, or the topology Management Information Block (MIB) to grow the network map and present all applicable
    devices to you for monitoring.
    You can also filter out devices that you don't want to be discovered by using properties such as the device type, name, and object identifier (OID). This is a handy option if you wanted to quickly discover all the network devices in your network except,
    a small number or some with a specific criteria.
    In really large networks with a lot of network devices, keep in mind that there is a default limit of 1500 network devices that can be discovered recursively. You can of course tweak this limit to suit your environment if you wish, but for most people, this
    won't be needed.
    More details, please go through the article below:
    http://kevingreeneitblog.blogspot.com/2012/07/scom-2012-network-monitoring-explicit.html
    Regards,
    Yan Li
    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]

  • SC 2012 R2 - Operations Manager - All servers except Management server show Not Monitored

    Hi all,
    I have installed System Centre 2012 R2 - Operations Manager and configured on our Domain and running without a problem. I used the VHD available here: http://www.microsoft.com/en-gb/download/details.aspx?id=40844
    I have created a single VM called VM1 and installed Windows Server 2012 R2. VM1 has also been joined to our domain.
    The management packs for Server 2012 R2 have been downloaded to the SC2012 OM.
    I have discovered and added in VM1 server to the OM Server. I can see the agent running in VM1 (Microsoft Monitoring Agent) but it always shows as "Not monitored".
    I have restarted both servers, found the guide regarding "Greyed out or Not monitored" but the steps outlined have not resolved the issue.
    The account used in the test domain to install and run the service is a Domain Admin account. The test domain network also disabled the firewall on all member servers.
    I have stopped all services on the OM server, renamed the "Health Service State" folder as suggested but nothing has resolved the issue.
    Could anyone please help me? If more information is needed I would be happy to provide it.
    Thanks in advance,
    Graham

    Thank you all. After coming into the office today I checked the event logs on VM1. All afternoon I had been getting 4 events every 15 minutes;
    Three x 21023 - OpsMgr has no configuration for management group SCOM12 and is requesting new configuration from the Configuration Service
    And one error, 20070 The OpsMgr Connector connected to SCOM12.test.local, but the connection was closed immediately after authentication occurred.  The most likely cause of this error is that the agent is not authorized to communicate with the
    server, or the server has not received configuration.  Check the event log on the server for the presence of 20000 events, indicating that agents which are not approved are attempting to connect.
    However at 00:04, I can see an event log 21019 - OpsMgr has returned to communicating with it's primary hostSCOM12.test.local and since then regular Health Service logs.
    I checked in OM and now it is showing as Healthy and monitored - I guess this just needed a lot of time to configure itself? Is this normal behaviour?
    I also checked VM1 TCP 5723 which it says was not open (the firewall is off on the server however it is working in OM.
    PS C:\PSScripts> Test-Port -computer VM1 -port 5723 -tcp
    Server   : VM1
    Port     : 5723
    TypePort : TCP
    Open     : False
    Notes    : Connection to Port Timed Out
    Thanks again for your help. If it goes again I shall create a new post.

  • Operations Manager - KMS Idle Minutes Monitor Alerts - False Positives As Event ID 12290 Still Being Logged

    Hi all,
    I am using System Center 2012 R2 Operations Manager with the Key Management Service Management Pack at version 6.0.7234.0, and I keep receiving the following alert in Operations Manager:
    "Idle Minutes Monitor Alert:
    Key Management Service (KMS) inactivity exceeded threshold
    Knowledge:
    Summary:
    The purpose of this rule is to alert system administrators to a possible KMS or network outage. This rule monitors the end-to-end operation of KMS activation. A notification event is created by KMS if no activation or renewal requests were logged by KMS
    (activity event 12290) in the specified time interval. In addition to new activations, periodic renewal requests are expected to occur (default is 7 days). Whether or not this alert is serious depends on the number of machines in the KMS environment, how many
    are actually connected, and the configured renewal interval.
    Causes:
    Any failure or incorrect configuration of the KMS service, other Windows components, firewall, hardware, network or routers can trigger the Idle Minutes Alert. This alert can also result from normal behavior, since it is possible that not enough machines
    attempted to activate or renew during the specified time interval.
    Resolutions:
    The first step is to determine whether there really is a problem. Start with a known good KMS client and run (with elevated privileges) the script slmgr.vbs -ato . If the activation/renewal fails, it will report an error code. You can direct the client to
    connect to a specific KMS machine by using the slmgr.vbs -skms option. The request event (12288) and response event (12289) in the Windows Application event log may provide additional information, including the identity of failing KMS machines. If there has
    been a failure, check the following:
    Software Licensing service (slsvc) is running.
    Other KMS machine behavior is normal.
    KMS firewall port is open (default is TCP 1688).
    Attempt to connect to KMS using telnet to the KMS port(you won’t be able to do anything other than connect)
    Use a network monitor (e.g. netmon) to capture and trace network problems.
    There is one Idle Minutes Monitor that is used to monitor for activity. It may be desirable to adjust the time threshold, depending on expected KMS activity."
    Despite what the alert says, there are activity events with ID 12290 being logged, but they are appearing under the 'Key Management Service' log instead of the general 'Application' log.  I know that my clients are activating with the server without
    any problems as I have run slmgr.vbs -ato with success on a number of them, and none are stating that activation is required.  This issue was previously raised here:
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/1391acf8-f0be-4a48-9039-8d24e275f1fd/kms-idle-time-monitor-raise-wrong-alerts?forum=operationsmanagermgmtpacks, but  I am running Windows Server 2008 R2 SP1 and the hotfix KB981314 comes
    up as 'not applicable to this computer' so I assume it is part of SP1 now.  I have also tried installing KB2692929, as that was cited as being a possible fix here:
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/8ec8ae5b-a310-4b0f-9a5f-e0599bceb93a/kms-managementpack?forum=operationsmanagermgmtpacks, however I am still seeing the same alerts.
    Would greatly appreciate any further suggestions!
    Many thanks

    Hi,
    I've checked for all the events that are generated by our servers, and there are periods of time where no requests are received for up to 18 hours, so that is no doubt why the alerts are appearing (we then sometimes see five requests in the same minute,
    but there we go).  I'll need to adjust the thresholds.
    Thank you for your help, Chunky.1, I'll mark your reply as the answer, as it was very helpful in understanding the alert.
    For anyone else who needs to check this, create a PowerShell script using the following content, and place your own details into the relevant sections in bold (without the brackets, of course).  This will generate a csv file which will have the server
    name in one column and the time that the request event was generated - you can then check the gaps between the requests.  The script is quick and dirty, with no checks along the way, so feel free to embellish it as required.
    Out-File "<directory to place file in>\KMS_check_results.csv"
    $results = get-eventlog -ComputerName <KMS server hostname> -logname 'Key Management Service'|where{$_.message -match "<String which identifies servers instead of clients>"}
    $filteredresults = @()
    foreach($event in $results){
        #This splits up the message into sections, separated by commas, and places each section as an element in an array
        $event.Message -split ","|foreach{
            if($_ -match "<server domain suffix - e.g. contoso.com>"){
                $eventserver = $_
        $timegenerated = $event.TimeGenerated
        $filteredresults += New-Object PSObject -Property @{
            Server = $eventserver
            TimeGenerated = $timegenerated
    $filteredresults|select-object server,timegenerated|export-csv "<directory to place file in>\KMS_check_results.csv"  -NoTypeInformation

  • Operations manager failed to run a wmi query for wmi events (0x800706ba)

    Hi everyone,
    I've been working on this issue for a while and I am still no closer to finding out what the problem is.  If anybody can offer any other advice or things to check, I'm all ears.
    I'm running SCOM 2012 R2 with UR2, and the Cluster Management Pack v6.0.7063.0
    My problem is on one particular batch of cluster servers where I am getting the following error.
    Name: Operations Manager failed to run a WMI query for WMI events
    Alert Description:
    Module was unable to enumerate the WMI data
    Error: 0x800706ba
    Details: The RPC server is unavailable
    Workflow name: Microsoft.Windows.Cluster.Node.StateMonitoring
    Instance Name: servername.domain.local
    Instance ID: {instance_id}
    Management group: SCOM_Management_Grp_Name
    I am getting this alert regardless of whether I run the Windows Cluster Action Account as Local System, or as a domain user with full local admin privileges on all the cluster nodes.
    When looking at the management pack and the workflow in particular (Microsoft.Windows.Cluster.Node.StateMonitoring), I can see that it's trying to access
    MSCluster_Node in the root\MSCLUSTER WMI namespace.
    This is the workflow for your information...
    <UnitMonitor> ID="Microsoft.Windows.Cluster.Node.StateMonitoring" Accessibility="Public" Enabled="onEssentialMonitoring" Target="ClusLibrary!Microsoft.Windows.Cluster.Node" ParentMonitorID="Health!System.Health.AvailabilityState" Remotable="true" Priority="Normal" TypeID="ClusLibrary!Microsoft.Windows.Cluster.CheckState" ConfirmDelivery="false">
    <Category>AvailabilityHealth</Category>
    <AlertSettings AlertMessage="Microsoft.Windows.Cluster.Node.StateMonitoring.AlertMessage">
    <AlertOnState>Warning</AlertOnState>
    <AutoResolve>true</AutoResolve>
    <AlertPriority>Normal</AlertPriority>
    <AlertSeverity>MatchMonitorHealth</AlertSeverity>
    <AlertParameters>
    <AlertParameter1>$Target/Property[Type="Windows!Microsoft.Windows.Computer"]/NetworkName$</AlertParameter1>
    <AlertParameter2>$Target/Property[Type="ClusLibrary!Microsoft.Windows.Cluster.Node"]/ClusterName$</AlertParameter2>
    </AlertParameters>
    </AlertSettings>
    <OperationalStates>
    <OperationalState ID="Success" MonitorTypeStateID="Online" HealthState="Success" />
    <OperationalState ID="Warning" MonitorTypeStateID="Partial" HealthState="Warning" />
    <OperationalState ID="Error" MonitorTypeStateID="NotOnline" HealthState="Error" />
    </OperationalStates>
    <Configuration>
    <ClusterObjectName>$Target/Property[Type='ClusLibrary!Microsoft.Windows.Cluster.Node']/NodeName$</ClusterObjectName>
    <PollInterval>60</PollInterval>
    <ClusterObjectClass>MSCLUSTER_Node</ClusterObjectClass>
    <OnlineExpression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">Property[@Name='EventNewState']</XPathQuery>
    </ValueExpression>
    <Operator>Equal</Operator>
    <ValueExpression>
    <Value Type="String">0</Value>
    </ValueExpression>
    </SimpleExpression>
    </OnlineExpression>
    <OnlineExpressionOnDemand>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">Property[@Name='State']</XPathQuery>
    </ValueExpression>
    <Operator>Equal</Operator>
    <ValueExpression>
    <Value Type="String">0</Value>
    </ValueExpression>
    </SimpleExpression>
    </OnlineExpressionOnDemand>
    <PartialExpression>
    <Or>
    <Expression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">Property[@Name='EventNewState']</XPathQuery>
    </ValueExpression>
    <Operator>Equal</Operator>
    <ValueExpression>
    <Value Type="String">2</Value>
    </ValueExpression>
    </SimpleExpression>
    </Expression>
    <Expression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">Property[@Name='EventNewState']</XPathQuery>
    </ValueExpression>
    <Operator>Equal</Operator>
    <ValueExpression>
    <Value Type="String">3</Value>
    </ValueExpression>
    </SimpleExpression>
    </Expression>
    </Or>
    </PartialExpression>
    <PartialExpressionOnDemand>
    <Or>
    <Expression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">Property[@Name='State']</XPathQuery>
    </ValueExpression>
    <Operator>Equal</Operator>
    <ValueExpression>
    <Value Type="String">2</Value>
    </ValueExpression>
    </SimpleExpression>
    </Expression>
    <Expression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">Property[@Name='State']</XPathQuery>
    </ValueExpression>
    <Operator>Equal</Operator>
    <ValueExpression>
    <Value Type="String">3</Value>
    </ValueExpression>
    </SimpleExpression>
    </Expression>
    </Or>
    </PartialExpressionOnDemand>
    <NotOnlineExpression>
    <And>
    <Expression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">Property[@Name='EventNewState']</XPathQuery>
    </ValueExpression>
    <Operator>NotEqual</Operator>
    <ValueExpression>
    <Value Type="String">0</Value>
    </ValueExpression>
    </SimpleExpression>
    </Expression>
    <Expression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">Property[@Name='EventNewState']</XPathQuery>
    </ValueExpression>
    <Operator>NotEqual</Operator>
    <ValueExpression>
    <Value Type="String">2</Value>
    </ValueExpression>
    </SimpleExpression>
    </Expression>
    <Expression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">Property[@Name='EventNewState']</XPathQuery>
    </ValueExpression>
    <Operator>NotEqual</Operator>
    <ValueExpression>
    <Value Type="String">3</Value>
    </ValueExpression>
    </SimpleExpression>
    </Expression>
    </And>
    </NotOnlineExpression>
    <NotOnlineExpressionOnDemand>
    <And>
    <Expression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">Property[@Name='State']</XPathQuery>
    </ValueExpression>
    <Operator>NotEqual</Operator>
    <ValueExpression>
    <Value Type="String">0</Value>
    </ValueExpression>
    </SimpleExpression>
    </Expression>
    <Expression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">Property[@Name='State']</XPathQuery>
    </ValueExpression>
    <Operator>NotEqual</Operator>
    <ValueExpression>
    <Value Type="String">2</Value>
    </ValueExpression>
    </SimpleExpression>
    </Expression>
    <Expression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">Property[@Name='State']</XPathQuery>
    </ValueExpression>
    <Operator>NotEqual</Operator>
    <ValueExpression>
    <Value Type="String">3</Value>
    </ValueExpression>
    </SimpleExpression>
    </Expression>
    </And>
    </NotOnlineExpressionOnDemand>
    <WMIFields>Name, State</WMIFields>
    </Configuration>
    </UnitMonitor>
    I can confirm that I am able to browse the MSCluster_Node class locally, as well as remotely using WMIEXPLORER and WBEMTEST,
    however it only works when I set the Authentication Level to
    Packet Privacy.  If I do not select Packet Privacy, a WMI event log error 5605 is logged on the remote servers application log that says...
    The root\mscluster namespace is marked with the RequiresEncryption flag.  Access to this namespace might be denied if the script or application does not have the appropriate authentication level.  Change the authentication level to Pkt_Privacy
    and run the script or application again.
    I can confirm that all firewalls are turned off, and there are no firewalls between the management servers and the agents in question.  AV exclusions have been done and appear to be in place.  The nodes are all Windows 2008 R2 with SP1.  As
    far as I can tell there is plenty of memory available on each of the nodes in question (50%+) of RAM is available. 
    If I manually run the "Discover the Windows Server 2008 R2 Cluster Components" task in the Cluster Service State section of the management pack in the Monitoring Pane in the console, on the nodes in question - the discovery runs successfully.
    Does anybody have any other ideas or suggestions I could try?
    Many thanks in advance,
    Noel.
    http://www.dreamension.net

    Hi,
    Common causes of RPC errors include:
    Errors resolving a DNS or NetBIOS name.
    The RPC service or related services may not be running.
    Problems with network connectivity.
    File and printer sharing is not enabled.
    For more information, please review the link below:
    Windows Server Troubleshooting: "The RPC server is unavailable"
    http://social.technet.microsoft.com/wiki/contents/articles/4494.windows-server-troubleshooting-the-rpc-server-is-unavailable.aspx#Identify
    Troubleshooting RPC Errors
    http://technet.microsoft.com/en-us/magazine/2007.07.howitworks.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • After creating a Powershell script monitor - how to import in Operation Manager 2012 ?

    Hello!
    I just completed all the steps in this article:
    http://social.technet.microsoft.com/wiki/contents/articles/16752.management-pack-composition-exercise-2-creating-a-monitor-based-on-a-windows-powershell-script.aspx?CommentPosted=true#commentmessage 
    So now I guess that the just created Management Pack should be imported in Operation Manager 2012, and then also folders and views should be created in order to have it showing green/red based on the values returned by the script.
    In the article there's no pointer to that procedure, so can you please provide a good link where the steps are explained?
    thanks!

    Have a look at the following video, it steps through how to create rules and monitors using PowerShell scripts
    https://technet.microsoft.com/en-us/video/how-do-i-create-a-rule-and-monitor-using-a-windows-powershell-script-in-a-system-center-operations-manager-management-pack.aspx
    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.

  • Network Monitoring~~~Operations Manager 2012 R2

    Hi All,
    I am using SCOM 2012 R2 when i am trying to discovery network devices it discovered, but its showing in discovery rules but not in  network devices.
    Guys can you lent me how much time will it take ...

    Hi,
    Discovery of a large number of devices can take several hours to complete. We may need to wait for some time.
    In addition, please go through the below links for more helpful information related with network discovery:
    How to Discover Network Devices in Operations Manager
    http://technet.microsoft.com/en-us/library/hh278846.aspx
    Troubleshooting Network Discovery in SCOM 2012
    http://www.code4ward.net/main/Blog/tabid/70/EntryId/105/Troubleshooting-Network-Discovery-in-SCOM-2012.aspx
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards,
    Yan Li
    Regards, Yan Li

  • Technical Monitoring for Logical host name

    Dear experts,
    We are in mid of technical monitoring finalisation.
    one of the interesting thing which i found with respect to the logical host name, we installed SMD agent on Virtual host name and our system is not with HA environment and no clustering. It is just a system with single instance.
    During the managed system configuration all the physical and logical host name reported by SMD autodiscovery, all went fine. But in Technical monitoring shows only virtual host name with the updated alerts , and logical host name only shows grey alert.
    virtual host shows alert here
    logical host name shows grey
    how can i get alert displayed for logical host name too? do i need to do some settings at the OS level , could you guide us?
    Thanks
    Jansi

    Hi Giri Raju Ayyagari,
    I am sorry, seems you are still not able to get my issue, moreover you get diverting my issue
    Here the problem is not at all related to agents on fly. thats the separate topic.
    We are having issue on Logical Host names where there is no HA environment, means only One logical host name created.
    I raised to SAP, l will update once the update from SAP given.
    Best regards
    Jansi

  • HP Operations Manager integration pack 7.1 for SCORCH Error

    Hi
    I am using the HP Operations Manager integration pack 7.1 for SCORCH this is working well sending messages in both directions from SCOM2012 to HP OM and from HP OM to SCOM with the get message/acknowledge message objects but the monitor message object does
    not work at all. No errors are logged and we can see the traffic in a network trace. The monitor message object just never triggers.
    has anyone else seen this issue ?
    Thanks

    The problem that I had was with the HP OM función "Monitor Message". Web service didn´t response Orchestrator.
    After all I fond the solution, If you Want the Orchestrator to monitor Messages from HPOM you should
    define a filter by message group on the activity "monitor Message";
    In this case that's because HPOM has the visibility of the user, configured through the atribute "Message Group".
    I hope will be useful.
    Regards

Maybe you are looking for

  • How does call library / .dll file work?

    I'm helping someone troubleshoot their machine / LabVIEW program.  I'm fairly new to LabVIEW, and I'm not sure what part of the program is doing.  I've attached the .vi in question.  In the middle of the page there is a sub.vi with a blank icon with

  • VAT and CST details for Company Code

    Hi All I have a requirement to store following details at the company code and plant level in SAP ECC for India implementation. Can someone please guide me where can I store these information in SAP ECC 6. VAT - Plant Level CST - Plant Level TIN - Co

  • Exception in thread "main" java.lang.NoClassDefFoundError: connect (wrong n

    Please Help, I am giving up... My PATH: %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;c:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\Java\jdk1.6.0_11\bin;C:\Program Files\MySQL\MySQL Server 5.1\bin;C:\JAVA DOCU

  • Subreports always start in a new page

    Hi, I have 4 subreports in 1 page, based on the suggestions from this forum, I put them into 4 different GroupHeaderSections so all the data is displayed. The problem I have now is that if a subreport is too big, it will start a new page and leave a

  • IPhone 5 unable to Sync to iTunes

    My IPhone 5 will not sync with my iTunes. It charges when plugged in and i can access all of the photos on my PC but it won't sync or say it's a connected device in iTunes. Is it my iTunes or phone or even PC?