How do I create a SCOM 2012 MP calling PowerShell to calculate a moving average of an event log event count?

I'm tasked to create a SCOM Monitor MP that needs to be deployed on different servers where it needs to count events in the eventlog and trigger an alert.
Before it is suggested that counting an absolute arithmetic difference is enough and offering links to such solutions, there is a "gotcha!" :
There might be one server, Server A,  that gets, say, 1000 events per hour, an increase of 100+ should trigger the alert.
On Server B, only gets 100 events per hour, and an increase of 10+ should also trigger the alert.
Therefore: You *can't* use an absolute diference, but *must* use a percentage difference.
It gets more challenging as there is another "gotcha":
Actually what should trigger the alert is a rate increase of events that falls outside of  two Standard Deviations of a Moving Average. The best example is the stock market: Your stock price moves up and down daily, but also steadily moves up due to
inflation over the years. You want a monitor that will alert you when the stock price goes above or below two standard deviations from the *moving average*.
I know how to call a PowerShell script from a SCOM Monitor, but I don't know how to get SCOM and PowerShell to "remember" prevous sampling's counts, because Monitors are state-less (e.g. "memoryless") .
Since SCOM, I'm told, can monitor any process state over time, I'm surprised that I don't see any support for statistical time-series analysis .
Any help would be appreciated.

Hi,
beyond advanced topic! That's what I like.
First, very good description, these are almost functional specifications!
I would also chose PowerShell.
Some time ago we did a similar situation - where
it was necessary to take into account the previous
situation|state.
We resolve this in a way that the states|values was
stored in the dedicated text file. So, at each new interval we collect new samples, read previous samples, calculate required values, stored this new calculated values, if required create property bag and trigger alert.
This is of course high level view. But in general the entire process is done in PS script.
Recently, I found that
the xml files and PS scripts bring
a lot of flexibility. Especially in building custom
diagnostics.
And there is no need to care about distribution of this files,
they may be included in the MP.
So SCOM infrastructure take care of this. 
One piece of advice: First decide
whether you need only alert
or you want to steer|change health. The first case
is simpler - you need rule. The second is more complex - you need monitor!
But of course the main part is PS script.
Regards,
Ivan

Similar Messages

  • How can install Reporting on SCOM 2012 R2

    Recently we have install sql 2012 r2 with new feature of HA ie High Availability and we have 2 management server of SCOM 2012 R2 but we cannot install the reporting. so is there any document or can anybody tell me how we can install the reporting is it
    possible to share the screenshots to install the reporting  of scom 2012 r2.

    Hi,
    Please refer to:
    How to Install the Operations Manager Reporting Server
    https://technet.microsoft.com/en-us/library/hh298611.aspx?f=255&MSPPError=-2147217396
    How To: Install System Center 2012 Operations Manager Reporting Server
    http://1staff.com/Blog/post/2012/11/05/How-to-Install-Operations-Manager-Reporting-Server.aspx
    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.

  • How to setup Tiering with SCOM 2012 class libraries?

    Hi All,
    I've two SCOM servers installed in two different machines and SCOM will have some alerts. I want to connect the two so that one acts as top tier and other one as lower tier. The top tier will show all the alerts from the lower tier in
    the connected alerts. From there I'm passing the alerts to external system for processing. I want to establish the tiering programmatically using the SCOM 2012 API. I know of method
    TieringManagement.AddTier Method (String, ManagementGroupConnectionSettings, SecureData, Boolean)
    Help me how can I achieve this by using the above method.
    Thanks in advance.
    viRa

    To configure method TieringManagement.AddTier Method, you can refer to below links
    http://msdn.microsoft.com/en-us/library/hh332072.aspx
    http://msdn.microsoft.com/en-us/library/hh350608.aspx
    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".

  • How do I create a fault-tolerant DLL call from LV?

    I've created an .exe from a VI that calls a DLL, when that DLL crashes,
    it crashes the whole application.  This DLL is too complicated to
    completely debug and it, in turn calls DLLs I have no control
    over.  It crashes approximately once every 100,000 iterations.
    How do I make a DLL call fault-tolerent?
    Attachments:
    crash.gif ‏19 KB

    I might not have been very clear in my answer - this isn't a feature that CAN be added to LabVIEW...the DLL threw an unhandled exception across a DLL interface - which pretty much means a system exception (code shouldn't be throwing language exceptions across DLL boundaries as they are language specific). This means that something went very wrong with the code and there is a good chance that the process space has been corrupted. And from my own debugging experience, if it's only crashing 1 time out of 100,000, that doesn't mean it isn't corrupting memory or otherwise causing problems...it was just the time it was caught.
    Considering this, the Call Library Node already is fault tolerant - we catch the exception and report it to the user. You have a valid position that we should simply return this as an error. It's also a valid position that it would be a road paved with good intentions. All you need to do is remember what life was like in Windows 3.1 - where one process could silently corrupt another - to realize the amount of untraceable errors that could occur. Yes, the error out value should be handled by the user, but when an application of 100's or 1000's of VIs crashes seemingly at random because someone didn't, you can see the problem.
    I will say I like the idea of a separate memory space. It is unfortunate that Windows only offers that through creating a separate process, but it is a neat idea. I worked in the VXI/VME world for a while, which does have multiple address spaces.
    BTW - using signal handlers to catch exceptions is unfortunately not a 100% solution...signals are a partial port of a Unix concept in Windows. You would be best to use SEH around the call (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccelng/htm/key_s-z_4.asp). If the DLL is already a C++ DLL, then you can use the global catch of C++ instead
    int err = 0;
    try {
    } catch(...) {
       err = -1;
    Again, you still are at risk of a corrupted process, but this allows you to avoid our handling of it.
    Having spent years writing and (god help me) debugging device drivers, I love this topic. If you want to talk more about it and various options, feel free to shoot me an email at [email protected].
    Brian Tyler
    http://detritus.blogs.com/lycangeek

  • SCOM 2012 Maintenance Mode PowerShell Script Problems

    I've seen other questions about this topic before, but none of them seem to address my specific problem, so I am starting a new thread.
    I am writing a script to put a single server (not a group) into maintenance mode.   Here is the command that it ultimately tries to call:
     Start-SCOMMaintenanceMode-Instance$Instance-EndTime$EndTime-Reason$Reason-Comment$Comment     
    So an exmaple would look like this:
    Start-SCOMMaintenanceMode -Instance "$Instance -EndTime "02/03/2014 15:26:00" -Reason "PlannedOther" -Comment "Testing Maintenance Mode"
    When my script tries to run this command, this is the error message that I get:
    Start-SCOMMaintenanceMode : Start time must be before end time for maintenance mode.
    Parameter name: startTime
    At C:\users\x036036\Desktop\Start-SCOMMaintenanceModeForServer.ps1:143 char:21
    +                     Start-SCOMMaintenanceMode -Instance $Instance -EndTime $EndT ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (Microsoft.Syste...anceModeCommand:StartSCMaintenanceModeCommand) [Start-SCOMMaintenance
       Mode], ArgumentOutOfRangeException
        + FullyQualifiedErrorId : ExecutionError,Microsoft.SystemCenter.OperationsManagerV10.Commands.StartSCMaintenanceModeCommand
    I've tried to look at Start-SCOMMaintenanceMode help online, but I don't see that "startTime" is a parameter.  So what is this error message talking about?  What am I missing?  

    Thanks for your help.   I didn't see your response until just now, but I have been playing around with this all since my last response.   I got it to work.  I wish I could pinpoint what exactly I changed to get it to work, but I
    feel like I've been changing so much stuff that I'm not sure any more.
    Just in case anyone finds it useful, here is the code.
    [CmdletBinding(SupportsShouldProcess=$true)]
    param
    [Parameter(Mandatory=$True,
    ValueFromPipeline=$True,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='What is the server you want to put in Maintenance Mode?')]
    [Alias("Server")]
    [string[]]$ServerName,
    [Parameter(Mandatory=$True,
    ValueFromPipeline=$false,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='Specifies the time the maintenance will end. The minimum amount of time a resource can be in maintenance mode is 5 minutes. This is a required parameter. Format is 1/29/2014 8:59:26 AM')]
    [Datetime]$end,
    [Parameter(Mandatory=$False,
    ValueFromPipeline=$True,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='PlannedOther, UnplannedOther, PlannedHardwareMaintenance, UnplannedHardwareMaintenance, PlannedHardwareInstallation, UnplannedHardwareInstallation, PlannedOperatingSystemReconfiguration, UnplannedOperatingSystemReconfiguration, PlannedApplicationMaintenance, ApplicationInstallation, ApplicationUnresponsive, ApplicationUnstable, SecurityIssue, LossOfNetworkConnectivity')]
    [string]$Reason,
    [Parameter(Mandatory=$False,
    ValueFromPipeline=$True,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='Allows you to type a comment about the maintenance activity.')]
    [string]$Comment,
    [switch]$EventLog
    set-strictmode -version latest
    #$start=Get-Date
    #$currentlog = $start.ToString()
    Write-Verbose "Starting $($myinvocation.mycommand)"
    Write-Verbose "Ready to put ServerName $ServerName in Maintenance Mode"
    Function Start-SCOMMaintenanceModeForServer
    [CmdletBinding(SupportsShouldProcess=$true)]
    param
    [Parameter(Mandatory=$True,
    ValueFromPipeline=$True,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='What is the server you want to put in Maintenance Mode?')]
    [Alias("Server")]
    [string[]]$ServerName,
    [Parameter(Mandatory=$True,
    ValueFromPipeline=$false,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='Specifies the time the maintenance will end. The minimum amount of time a resource can be in maintenance mode is 5 minutes. This is a required parameter. Format is 1/29/2014 8:59:26 AM')]
    [Datetime]$end,
    [Parameter(Mandatory=$False,
    ValueFromPipeline=$True,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='PlannedOther, UnplannedOther, PlannedHardwareMaintenance, UnplannedHardwareMaintenance, PlannedHardwareInstallation, UnplannedHardwareInstallation, PlannedOperatingSystemReconfiguration, UnplannedOperatingSystemReconfiguration, PlannedApplicationMaintenance, ApplicationInstallation, ApplicationUnresponsive, ApplicationUnstable, SecurityIssue, LossOfNetworkConnectivity')]
    [string]$Reason,
    [Parameter(Mandatory=$False,
    ValueFromPipeline=$True,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='Allows you to type a comment about the maintenance activity.')]
    [string]$Comment,
    [switch]$EventLog
    Begin
    Write-Verbose "Starting Function Start-SCOMMaintenanceModeForServer"
    #Check for minumum Maintenance mode period of 5 mins.
    $start = Get-Date
    $5MinFromNowTime = $start.AddMinutes(5)
    #$end = [datetime]$end
    $end = $end.AddSeconds(5)
    if($end -lt $5MinFromNowTime)
    Write-Error "The time span for the maintenance mode should be at least 5 minutes." -ErrorAction Stop
    Write-Verbose "Following server will be put in Maintenance Mode: $ServerName"
    $MSs = Get-SCOMManagementServer
    } #End Begin
    Process
    Write-Verbose "Checking if server $ServerName is a Management Server"
    #Write-Verbose ($MSs | Select DisplayName)
    if(($MSs | Select DisplayName) -eq $ServerName)
    Write-Verbose "We don't want to put a Management Server in Maintenance Mode. Skipping"
    else
    Write-Verbose "Let's put server $ServerName in Maintenance Mode"
    $Instance = Get-SCOMClassInstance -Name $ServerName
    if ($PSCmdlet.ShouldProcess("Putting $ServerName in Maintenance Mode until $($end).") )
    Write-Verbose ("Start-SCOMMaintenanceMode -Instance " + $Instance + " -EndTime " + $end + " -Reason " + $Reason + " -Comment " + $Comment)
    Start-SCOMMaintenanceMode -Instance $Instance -end $end -Reason $Reason -Comment $Comment
    }#End of whatif
    }#End of else
    if ($PSBoundParameters['EventLog'])
    write-eventlog -LogName "Operations Manager" -Source "OpsMgr SDK Service" -EventID 999 -message "The following Objects are put into in Maintenance Mode until $($end) : $($ServerName)"
    }#End if
    } #End Process
    End
    Write-Verbose "Finished Function Start-SCOMMaintenanceModeForServer Function"
    #Main
    try
    if ($PSBoundParameters['EventLog'])
    write-eventlog -LogName "Operations Manager" -Source "OpsMgr SDK Service" -EventID 998 -message "The $($myinvocation.mycommand) is used to put Objects in Maintenance Mode"
    Write-Verbose "Checking if OperationsManager Module is loaded"
    #Check if OperationsManager Module is loaded.
    if(!(Get-Module OperationsManager))
    Write-Verbose "Importing OperationsManager Module"
    Import-Module OperationsManager -ErrorAction Stop
    Write-Verbose "Checking for OM2012 environment"
    #Check if OM2012 is being used.
    if(!(Get-Module OperationsManager).Description -eq "Operations Manager OperationsManagerV10 Module")
    Write-Error "This script is only for OM2012"
    #Call Function
    if ($PSBoundParameters['EventLog'])
    Start-SCOMMaintenanceModeForServer -ServerName $ServerName -end $end -Reason $Reason -Comment $Comment -EventLog
    else
    Start-SCOMMaintenanceModeForServer -ServerName $ServerName -end $end -Reason $Reason -Comment $Comment
    } #End Try
    catch [System.IO.FileNotFoundException]
    "OperationsManager Module not found"
    $_.Exception.Message
    catch
    Write-Warning "Oops something went wrong"
    $_.Exception.Message
    $end=Get-Date
    Write-Debug ("Total processing time {0}" -f ($end-$start).ToString())
    Write-Verbose "Ending $($myinvocation.mycommand)"
    There is one remaining problem with this script.   It does not correctly check to see if something is a management server. We have two management servers. These are the applicable lines, which I still haven't gotten to work yet. First, this retrieves
    the list of my Management servers:
    $MSs=Get-SCOMManagementServer     
    Next, these lines are supposed to check if the server I specified is a management server:
    if(($MSs | Select DisplayName) -eq $ServerName)
    Write-Verbose "We don't want to put a Management Server in Maintenance Mode. Skipping"
    Thanks to the Intellisense pop-up deal, I can see that $MSs does get my two management servers. And I can clearly see that there is a DisplayName column. And I can also see that the $ServerName does match what I put in my command line.   But it doesn't
    seem to catch them if they are actually equal to each other. I don't know if it's because there's two Management Servers, and it doesn't know how to compare like that? Any idea? Is there some sort of loop I need to write so that it compares is to the DisplayName
    for EACH Management Server it finds? Any help would be greatly appreciated.

  • Creating SCOM 2012 Logical Disk Space Availability View

    Hi Everyone,
    I am looking to create a SCOM 2012 Logical Disk Space Availability View and having a little trouble finding documentation on how to do this. It would be really handy to see all of the servers being monitored and how much free space they have all in one view.
    Has anyone created a view like this before.
    Thanks in advance for all your help.
    JD

    Hi,
    Below are some blogs that will help you to understand more about disk space monitoring
    Writing monitors to target Logical or Physical Disks
    http://blogs.technet.com/b/kevinholman/archive/2009/11/24/writing-monitors-to-target-logical-or-physical-disks.aspx
    OpsMgr: Logical Disk free space alerts don’t show percent and MB free values in the alert description
    http://blogs.technet.com/b/kevinholman/archive/2011/11/17/opsmgr-logical-disk-free-space-alerts-don-t-show-percent-and-mb-free-values-in-the-alert-description.aspx 
    Thanks.
    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.

  • SCOM 2012 SP1 Test environment - "New View" is greyed out?

    I'm new to SCOM....
    I just created a SCOM 2012 SP1 test environment, but for some reason the "New View" button is greyed out. (I attached a screenshot) 
    I can't figure out why and it pretty frustrating. I'm assuming it is a permissions issue, but I can't figure out how to get this feature enabled.
    any assitance is greatly appreciated.

    Hi,
    The "New View" is greyed out if you try to create a new View in a sealed Management Pack.
    You can create a new View only in unsealed Management Pack's inside the console.
    Cheers
    Christoph Maresch | My blogs: blog.cmaresch.at | XING:
    Christoph Maresch
    | Linkedin:
    Christoph Maresch

  • SCOM 2012 R2 Reporting Services High Availability Configuration Setting

    Can u guys tell me how I can make a scom 2012 r2 report server high availability configuration kindly share the steps or screen of it.

    SCOM reporting feature is depend on SQL reporting and as a result you may refer to SQL reporting service high availability.
    For detail, pls. refer
    http://technet.microsoft.com/en-us/library/bb522745.aspx
    http://www.mssqltips.com/sqlservertip/2335/scale-out-sql-server-2008-r2-reporting-services-farm-using-nlb-part-1/
    http://www.mssqltips.com/sqlservertip/2336/scale-out-ssrs-r2-farm-using-windows-network-load-balancing-part-2/
    http://technet.microsoft.com/en-us/library/hh882437.aspx
    Roger

  • SCOM 2012 reporting

    Hi everyone,
    We are doing an exclusive webinar for MS SCOM experts and would like to invite you to join us on 24<sup>th</sup> of April.
    Visit our webinar to learn how to implement self-service reporting in SCOM 2012.
    Agenda:
    • How to address Cloud reporting
    • SCOM 2012 reporting
    • DevOps and Cloud - self provisioning
    • Self-service in SCOM
    Join the meeting:
    https://cms.join.me/axibase.com (for North and South America)
    Join the meeting: https://cms.join.me/axibase.webinar (for
    EMEA)
    On a computer, use any browser with Flash. Nothing to download.
    On a phone or tablet, launch the
    join.me app and enter meeting code:
    axibase.com
    Join the audio conference:
    Dial a phone number and enter access code, or connect via internet.
    By phone: 
    Access Code   346-934-063# (for North and South America)
    Access Code   516-347-987# (for EMEA)
    United States   +1.860.970.0010
       +1.408.418.5040
       +1.860.970.0010
       +1.646.307.1990
       +1.682.710.0032
       +1.213.226.1066
    Argentina   +54.11.5352.8217
    Australia   +61.2.9191.6319
    Brazil   +55.11.3958.8707
    Canada   +1.647.977.2648
    Chile   +56.22.582.8713
    Colombia   +57.1.381.2853
    Japan   +81.3.4579.5983
    Mexico   +52.55.4631.9922
    New Zealand   +64.9.951.8390
    Panama   +507.836.5977
    Peru   +51.1.707.5722
    Venezuela   +58.212.335.7832
    By computer via internet:
    Join the meeting, click the phone icon and select 'Call via internet'. A small download might be required.
    Best regards,
    Alex Ganyukov
    VP of Sales
    [email protected]
    Direct no. +1.408.915.5551
    www.axibase.com
    Axibase Corporation

    Hi,
    From my point of view, SCOM reporting is to use to get needed reports about service availability, performance and alerts and so on. With those report, we may do data analysis to get more details about the monitored environments.
    With management pack imported, there may be many available reports that can be run to get proper information about what monitored by using this management pack.
    If there is any misunderstanding, please feel free to let me know.
    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]

  • TS3999 When I creatae a new calendar it copies all the events in my existing calendars.  How can I create a calendar with no events in it???

    How can I create a new calendar (e.g. Yoga) that doesn't have all the events on my other calendars (which all appear to be synced with each other)?  I just want a blank calendar to start with.
    thanks

    This can be a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    * http://kb.mozillazine.org/Bookmarks_not_saved

  • How can I define a name in Excel using Powershell?

    I know how to reference existing names using the RANGE function but how can I create a new defined name using Powershell?
    My specific case involves defining a name for a single cell with a workbook scope.  Just as if you were to right-click a cell in Excel and choose Define Name.
    The closest I've gotten is the NAMES object for the workbook but when I "gm" that all I see is a method for delete - nothing for adding.
    $xlsx = "c:\Sample.xlsx"
    $excel = new-object -comobject Excel.Application
    $xlb = $excel.Workbooks.Open($xlsx)
    $xlb.names | gm

    In Excel a Range has a name.  You can create a range and name it.  "Names" is just a list of the names that have been defined.
    So what is it that you are asking?  If your spreadsheet has names this will find them for you.
    Try this:
    $xlb.names|select name
    $r=$xlb.sheets.item(1).UsedRange
    $r.Name='all'
    # now do this again
    $xlb.names|select name
    So now you know everything about "names" or, as us old pros say "named ranges" like in the old  west.
    ¯\_(ツ)_/¯

  • How to create a group in SCOM 2012 R2 based on SCCM Collection?

    Is there a way to create a group in SCOM 2012 R2 based on sccm collection? I am planning to use that group for maintenance mode.
    Thanks, Samer

    Hi,
    I think you could query all the collectin members from SCCM database then use powershell to add them to a specific OU.
    How to Create Groups in Operations Manager
    http://technet.microsoft.com/en-us/library/hh298605.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.

  • SCOM 2012 R2 - How to create a Web Application Monitor for an URL requiring certificate authentication

    Hi All,
    It looks like in SCOM 2012 there are two ways to monitor a web application (URL monitoring):
    Way no 1: (Using the Web Application Transaction Monitoring template)
    Way no 2: (Using the Web
    Application Availability Monitoring template)
    We have created some monitors using
    Web Application Availability Monitoring to check if URL is up without any authentication method.
    However, we have few URLs for which we need Client Certificates to be used for accessing them but found no option in SCOM 2012 to configured the certificates. 
    I have searched a lot on the Tech Net library but no clue.  Does anyone know how to successfully monitor an URL requiring certificate authentication on SCOM 2012 ? or, at least, using no matter which method?
    Thanks.
    Regards,
    Raju.

    Hi,
    Based on my research, it is not possible by using the built-in monitoring templates. Both of them handles “normal”, server-side, SSL-certs, and the transaction monitor handles basic/digest/NTLM authentication, but client certificate based authentication
    is not a configurable option.
    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]

  • Creat a Dashboard - A Particular User/User Group mails send/receive Statstics - is it possible ? How ? Exchagen 2013 Scom 2012 R2

    I want to see a particular user mailbox statistics for its send receive count in particular hours of the day
    Is there a way to build such a dashboard in SCOM 2012 R2 for Exchange 2013 ?
    Please help.
     

    Hi,
    The follwing article may be helpful
    Monitoring Exchange 2013 with SCOM 2012
    http://www.msexchange.org/articles-tutorials/exchange-server-2013/monitoring-operations/monitoring-exchange-2013-scom-2012-part1.html
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    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.

  • How to configure windows services alerts in SCOM 2012 for all agent servers. For eg, Terminal Services, Netlogon, RPC etc..

    Hi,
    I need to configure different windows services alerts in SCOM 2012. Below are some of the windows services I need to monitor through SCOM.
    Serivce: Windows Management Instrumentation
    Service: Netlogon
    Service: Remote Procedure Call (RPC)
    Service: Server Service
    Service: Terminal Services
    Service: Windows Time
    Service: Workstation
    Service : WWW Publishing Service
    Could some one please assist or share me the details, how to configure these services for windows agent servers.
    Thanks..
    Regards, Rajeev Parambil

    Hi,
    A certain set of services are monitored by default on all agents:
    DNS Client
    DHCP Client
    RPC
    Workstation
    Server
    For all the other services you could create a service monitor.
    A nice blog series outlining this process can be found here: http://www.bictt.com/blogs/bictt.php/2011/03/16/scom-monitoring-a-service-part1
    It's doing common things uncommonly well that brings succes. Check out my SCOM link blog:
    SCOM link blog

Maybe you are looking for

  • Can I make the personal domain go away?!

    Problem: I played with the personal domain thing in the 2.0 phase of iWeb, and decided to wait until the update fixed things. I USED to have my GoDaddy URLS point to each of my various iWeb sites, which they still do. However, when I publish now, iWe

  • Cleanest multi-processor install?

    I recently purchased a dual Xeon 3.0Ghz Quad-core Dell T7400 Precision Workstation (used) with 32GB of RAM. I ran some testing before moving all of my software to the new machine, and it very quickly became clear that the system had some stability is

  • Dashboard pages within dashboard

    Hi All, We can create Dashboards within a group as a dropdown by making changes in instanceconfig file, but is it possible to have dashboard pages within a dashboard as a dropdown.

  • SAP MDM certification through SAP Tech Ed

    Hi All, I have lot of questions regarding SAP CERTIFICATION in SAP Tech Ed. Please response. If I want to do SAP MDM certification through SAP Tech Ed then what are the things required? 1) I have worked on EP Webdynpro previously. But Now I am in a s

  • Unable to Extract to Temp Directory (EX11 error for InDesign CC)

    Good Afternoon, I purchased the annual subscription for the creative cloud suite, for use on my Windows 7 PC.  All programs downloaded and installed just fine, with the exception of InDesign.  I receive the error "Installation failed - unable to extr