Can monitor SCCM agent health through SCOM, monitor logs like CCMeval and setup alerts

Can monitor SCCM agent health/inactive agents through SCOM, monitor logs like CCMeval and setup alerts

You can find some management packs here:
http://systemcenter.pinpoint.microsoft.com/en-US/applications/search/Operations-Manager-d11?q=
There are other sites as well but this is the MS page for hosting MP's.  The default SCCM 2012 Management pack for SCOM 2012 is pretty functional, this page talks a little bit about it:
http://blogs.technet.com/b/kevinholman/archive/2012/12/11/monitoring-configmgr-2012-with-opsmgr.aspx
If I remember correctly, it does NOT include a lot of client monitoring but I could be wrong.  It might take some custom monitor creation or management pack downloads to get exactly what you're wanting.  If I can find something like that
I'll add it to this post.
A good rule of thumb that I live by with SCOM, in case the product is new to you, is to save all your changes and customizations to the SCCM management pack in a custom-created management pack.

Similar Messages

  • I am getting a weird alert I can't get rid of. Help! I have amber and gov alerts turned off. All other alerts turned off I think it may be a sever weather alert but can't find it!

    I am getting a weird alert I can't get rid of. Help! I have amber and gov alerts turned off. All other alerts turned off I think it may be a sever weather alert but can't find it!

    That file could be set as a Launch Agent or Daemon in your ~/Library or /Library, You could try to look for it or Safeboot your computer and then empty the trash. Safebooting disables Launch Agents/Daemon and Third Party Kernal extensions. Here's the article to Safeboot OS X: What is Safe Boot, Safe Mode? - Apple Support

  • Can a Macbook pro support high graphic games? (like crysis2 and thesims3)

    My dad was considering getting me a Macbook Pro for my exam present, but i was worried if i get one I wont be able to play the games i got...

    I have a MBP 13" 2,3 hz, late 2011 sandy brige edition. I can run COD4 pretty well, but it really cant handle the new games like BF3 and such.
    So i would also say that you need a MBP with a dedicated grafix card, witch the 15" and the 17" models have.
    But again you prob. will have to run most games in bootcamp mode, where you have installed windows as a second system, since i dont think you can get the games you mention for mac, only for windows.

  • Can't see video playing through external monitor

    Well it use to work, seeing the Timeline play through my external monitor.. Here's what I have, FCP 4.5 HD hooked up through Firewire to a JVC tape deck which in turn is hooked up through RCA cables to a small tv set. I have the following setup in FCP Audio/Video settings>Device control Preset: Firewire NTSC and Video Playback: Apple firewire NTSC. I've unplugged the Firewire cable a couple of times and still can't get the Timeline to play in my external monitor. Here's the funny part if I go to Log and Capture I can control the JVC deck and see my mini DV not only play in the Log and Capture window but also in the external monitor. I would think I won't be able to. I must be forgetting a setting in FCP to see my Timeline play in my monitor but for the life of me I can't remeber. Appreciate all sugestions!
    G5 dual 2.5   Mac OS X (10.3.9)  

    Randy,
    Many thanks. I really should not use keyboard commands that I'm not sure about.! I probably hit cmd F12 instead of just plain old F12 to do a superimpose. I'm going to start a list of all these settings I need to check. Someday I hope to be able to help someone figure out a problem. Again thanks for taking time to help me out and keeping a few more hairs on my head.
    Loran
    G5 dual 2.5    

  • Can I buy Creative Cloud through a government reseller like CDW-G?

    I work for a town, and we'd like to subscribe to Creative Cloud. Can we get it through a reseller? And is there a way to pay once a year, rather than monthly?
    tx,
    Kathy

    You wil lhave to check the eligibility status of the school and provide the necessary papers:
    Education FAQ
    Adobe - Student Edition Order Fulfillment
    If you have questions, contact S&T support directly. Due to the special regulations, nobody here can give you an off-the-bat simple answer.
    Mylenium

  • Can we access Assets/Market through adobe's site like we can our files/fonts/colors...?

    For (ridiculous) security reasons at work I can't use the creative cloud app on the desktop.
    Is there a way to access the Market categories online, like Vector Shapes and Patters?
    Thanks

    Hi,
    I'm looking for an alternative view too because the view of the market in the Desktop app is to small. Not very comfortable. Unfortunally, the size of the Desktop app can't be changed.
    The above link links to the addons, not to the market.
    Is there a link to the market too?
    Greetings from Germany
    Ralf

  • HT3819 Can I share my music through iTunes between my iPad 2 and compaq laptop

    How to share my music between ipad2 and compaq laptop

    What do you mean share?
    If the music is in iTunes on the computer, sync it to the iPad.
    If the music is on the iPad, transfer it to the computer via iTunes.

  • HT204289 Can I use AirPlay to stream shows from websites like TVO and then watch them on my AppleTV?

    I would like to know if I can stream shows from websites like TVO or Treehouse using my iPad and then watch them on my Appletv using AirPlay.

    Hello zvolkert,
    It sounds like you would like to be able to play audio to a set of wired speakers connected to your computer and a set of AirPlay speakers.  Currently, this feature is available through iTunes 10 or later on a computer.
    If you click the AirPlay icon in iTunes 10 or later, you will get a window like this:
    You can find more information in the following article:
    iTunes 10: About playing music with AirPlay
    http://support.apple.com/kb/ht4325
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How can I display data from ResultSet to a component like jLable and JTable

    hi there
    My code as shown below
    boolean fillTable(int type){
            try{
                //model.setRowCount(0);
                if(type == 1){
                    System.out.println("line 1");
                    model = new DefaultTableModel(new Object [][] {   },
                            new String[] { "\u1200 Code", "Description" });
                    System.out.println("line 2");
                    while(lookup.rs2.next()){
                        System.out.println("line in while");
                        model.addRow(new String[] { lookup.rs2.getString("code"),
                            "\u1201 " + lookup.rs2.getString("amdescription")});
                          //System.out.println("While : " + lookup.rs2.getString("code") + " " +
                            //      lookup.rs2.getString("amdescription"));
                    lookup.rs2.last();
                    String str;
                    str =  new String (lookup.rs2.getString("amdescription"));
                    jLabel2.setText(str);
                    System.out.println("line 3");
                    tblLookup.setModel(model);
                    System.out.println("line 4");
                else if(type == 2){
                    System.out.println("line else if 1");
            }catch(Exception ex)    {
                System.out.println("Exception @ MilLookupDisplay fillTable : " + ex.getMessage());
                return false;
            return true;
        }I can read from access db and put the resultset on rs2 , it works fine
    my problem is when I try to display the data ( which is amharic unicode character ) on jTable and jLabel as shown it displays '???'
    besides I have checked the font by giving unicode like '\u1200' on both component displays it well
    so is there something to do before trying to display unicode characters from resultSet
    please I ' m waiting
    thanks a lot

    http://forum.java.sun.com/thread.jspa?threadID=5153938

  • When i make a video i can not hear my self at all it sound like wind and the speaker phone they cant hear me but I can hear them do you know how to fix this apple

    Can you fix this apple let me know at [email protected]

    Hello Californiapink,
    It sounds like the ooVoo app on your iPhone is not playing audio.  I recommend following the steps in the article below for an issue like this (you can skip step 3 since it is not related to this issue):
    iOS: Troubleshooting apps purchased from the App Store
    http://support.apple.com/kb/TS1702
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Can't connect to FTP through FINDER   (other ftp clients work)

    I try to connect to my schools ftp icarus.engr.uconn.edu through finder's, Go -> Connect to Server
    but every time I try it tells me you have entered an invalid password or username. The thing is that I can connect to the ftp through any FTP client like filezilla or Cyberduck even the Terminal ftp program will connect, but not Finder. Finder tells me the password or username is invalid. ??

    Is it not prompting you? You can imbed your username or even your username + password in the URL.
    e.g.
    ftp://username@server
    or
    ftp://username:password@server
    There should be no issue connecting. BUT... the imbedded FTP in Finder only allows for downloads. You can't upload.
    You can upload via the command line FTP client, and of course a slew of 3rd party FTP clients (some of which you've already mentioned.)
    Message was edited by: Tim Campbell1
    Message was edited by: Tim Campbell1

  • People can hear my computer sound through skype.

    My computer sends all my sounds through skype so that every one i´m talking with hear what i´m hearing! I´ve tried all the stuff i coold find on other threads but without succes. I´m using a siberia steel series headset v2. My sound card is sound blaster recon 3di. Please help!!!

    I have the same problem and i'm going to become crazy soon. I'm trying not to swear like **** in here right now. I just bought new headphones (my friend also has them) just because of my friends could hear my skype sounds. No1 knows how to fix it!!!!! I have been searching for years! No one knows how to fix it!!!!!
    -My skype friends can hear their own voice.
    -My computer sound like music and gaming sounds...
    -They can hear every ******* little sound of a rat 10km from our house.. They can hear stuff I can not hear! This sucks!
    Why does this happen!?!??????????????????
    I hate to skype! I hate skype just because of this! I want to fix it!
    My headphones are really good! My friend I skype with also has them!
    When I mute my mic, they can still hear me and my voices!
    SKYPE PEOPLE! HELP ME! DONT JUST READ THIS HELP!
    MY FRIENDS THINK MY COMPUTER SUCKS AND ALL MY STUFF SUCKS BECAUSE MY SKYPE IS BROKEN
    Thanks please help. 3:

  • How can I get iCloud on my PC to 1) update my new e-mail automatically and 2) alert me to new e-mails?

    I've started using iCloud on my PC to manage my e-mail / calendar / reminders, because Outlook stopped syncing correctly with my iPhone.  However, it seems like to the only way I can get iCloud on my PC to update my e-mail is to select the Get Mail icon at the bottom left of the email screen. 
    How can I get iCloud to 1) update my e-mail automatically and 2) alert me to the arrival of the new e-mail?

    The issue here is an expectation the program will or can do something when it is not running. (At least I think that is what your saying.
    I leave Thunderbird running for days at a time, as it does not clof up my task bar, simply leaving a rectangle around it's icon on the task bar.
    while running like this is puts up new mail notifications a small box in the bottom right of the screen and places an icon in the notification area on the task bar.
    What happens to this options I have no idea in Windows 8. I bought it but never installed it because it would not boot to the desktop. But as Windows 8 still has a taskbar, I assume they all do exactly the same things.

  • Can anybody explain the difference REDOLG vs ARCHIVE log files

    can anybody explain the difference REDOLG vs ARCHIVE log files?
    and the relation between redolog files and redolog buffers?
    thanx in advance

    Changes made to the database are recorded in the Redo log buffer. This Buffer contains Redo records or entries, which are a description of changes made to the database.
    The Redo Logs are critical in order to recover the database or to reconstruct data files and undo segments after a system crash or hardware failure.
    Each Oracle instance has only one log writer process (LGWR). The log writer operates in the background and writes all records from the Redo log buffer to the Redo log files. When the database operates in Archivelog mode, the redo logs are are archived before overwritten.

  • List of services which can be monitor through scom

    Hello Experts..,
    We have to list-out Services which cab be monitored through SCOM  for windows server system.
    if there is any link and document on it ,Please provide us.
    if it's depend on MPs ,please provide services with MP List.
    Regards
    Richa KM

    For windows server MP and what's can be monitor and services depend on MPs, you can refer to document of MP that exist in below link
    http://www.microsoft.com/en-us/download/details.aspx?id=9296
    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).

Maybe you are looking for

  • Deleting data from a chart

    I am doing a project, but the directions for how to make the graph is for Excel. My directions say to "Right-click on the graph and click 'Select Data.' I am then supposed to delete all series labeled "Time." My graph is a scatter-plot, with no line

  • I erased my iPhone data and now it won't activate

    My phone was saying searching since yesterday and I did everything from a soft reset to a network reset and nothing then tried to do a hard reset and it wouldn't let me so I went on phone my iPhone and erased it that way and now it won't activate and

  • Japplet in jsp

    hi all i cant understand what wrong i m doing....i m annoyed very much my jsp page is in /UASEProject/Webcontent directory and applet class is in /UASEProject/Webcontent/registration directory and also its java file. jsp page is running successfully

  • Can't change SQL_ATTR_ROW_ARRAY_SIZE between calls to SQLFetch

    My application uses fixed size buffers for array fetches and attempts to avoid any issues with drivers that do not return a full buffer of data by changing the array size (after rebinding the columns) to ensure we always get a full buffer of data. Un

  • Smart form for commercial invoice

    hi , i have to develop a smart form for commercial invoice for argentina in spanish language only. is there any standard smartform in SAP which i can use as a reference for this. or any help regarding this you can tell. any help is appreciated.