SCOM 2012 R2 RU 2 Topology widgets Background image and Nod visualization is missing

After Updating RU 2 in System center OM 2012 R2 no background image and Nod visualization missing in Topology widgets ?
Santosh Dharamsale

You will need to Import the MP Microsoft.SystemCenter.Visualization.Library.mpb.
For more info., You can refer below link
http://thoughtsonopsmgr.blogspot.com/2014/04/update-rollup-2-for-scom-2012-r2.html
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"
Mai Ali | My blog: Technical | Twitter:
Mai Ali

Similar Messages

  • Background images and color

    What instance would background image and background colors
    not show in a browser? (All other images are fine)

    Cosmic rays.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:gbu845$7gd$[email protected]..
    >A color specification without the required octothorpe
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > ==================
    >
    >
    > "TC2112" <[email protected]> wrote in message
    > news:gbu7sb$782$[email protected]..
    >> Hello,
    >>
    >> Some examples would be incorrect CSS, an incorrect
    link to a CSS
    >> stylesheet, another element with a background color
    "on top" of the
    >> background blocking it, an incorrect path to the
    image....
    >>
    >> The answer is in the code.
    >> Do you have a link you could post?
    >>
    >> Take care,
    >> Tim
    >>
    >> "TaraLeigh" <[email protected]>
    wrote in message
    >> news:gbu7bj$6hs$[email protected]..
    >>> What instance would background image and
    background colors not show in a
    >>> browser? (All other images are fine)
    >>
    >>
    >

  • How is it possible to adjust the background images and the text in Mail?

    How is it possible to adjust the background images and the text in Mail?

    Here's the solution I used to solve the same problem. If you're not comfortable editing the source files, this might be more than you want to take on--but I've done it to several files with no ill effects. You can follow the instructions on this page and the referenced original post from (he includes a link on the page). Good luck! He's got some great tips on some of his other pages.
    http://photo.rwboyer.com/2010/03/15/aperture-3-book-theme-trick/
    A warning about editing the Master pages--it only edits them in that book--it doesn't update the theme. So if you go to create another book with those same layouts, you'll have to duplicate the book and replace all the images. An alternative would be to create a "clean" book with no photos in it and then just use that as a starting point each time.

  • Resizing 1) background images and 2) div's containing images

    I just created a web page consisting of little more than an image (about 900 pixels) wide which is set at width=100% in a style sheet. It works great, but I'd like to substitute a smaller image (to reduce page loading time) in mobile devices.
    If it was a background image, I could just declare two different background images based on screen size, but I don't know of any way to swap between images actually inserted in a page.
    So, is it possible to give a background image a width in percentage, similar to a static image? In other words, if my screen was 651 pixels wide, then a static image inside a container spanning the entire screen should also be 651 pixels wide. Can I rig it so that a background image in that container would also be 651 pixels wide?
    Of course, the obvious problem is height. If a background image measures 900 X 1200 pixels, and a screen is 600 pixels wide, then even if there's a style that makes the image 600 pixels wide, it would also have to calculate a height of 800 pixels, and I'm guessing that can't be done.
    Anyway, I'd just like to know what kinds of tricks one can use in making background images and divs containing static images display in percentages based on screen size.
    Thanks.

    Use background-size:cover; for your background images.
    Further reading: http://css-tricks.com/perfect-full-page-background-image/
    EDIT:// For swapping out placed images, it's a little harder to do right now as there is no specified solution from W3C. Some people want to use the srcset attribute, others the <picture> tag. There is no perfect approach right now. See: http://mobile.smashingmagazine.com/2013/08/21/webkit-implements-srcset-and-why-its-a-good- thing/
    One idea is you could hide the image and then load a background-image in the container which is smaller in size. But this would likely bloat your HTML and CSS as you use multiple images - the device will also load both images so you don't gain any real advantage unless you intend to show a croppoed or different image.
    Other ideas: http://mobile.smashingmagazine.com/2013/07/08/choosing-a-responsive-image-solution/
    <div class="image">
         <img src="YourImage.jpg" alt="" width="500" height="250" />
    </div>
    @media only screen and (max-width: 480px) {
         .image img {display:none;}
         .image {
              background:url("YourImage_Mobile.jpg") no-repeat 0 0;
              background-size:cover;
    Another idea is to show/hide the relevant image:
    <img src="YourImage.jpg" alt="" width="500" height="250" class="desktop" />
    <img src="YourImage_mobile.jpg" alt="" width="300" height="180" class="mobile" />
    @media only screen and (max-width: 480px) {
         .desktop {display:none;}
         .mobile {display:block;}

  • Problem with Background image and JFrame

    Hi there!
    I've the following problem:
    I created a JFrame with an integrated JPanel. In this JFrame I display a background image. Therefore I've used my own contentPane:
    public class MContentPane extends JComponent{
    private Image backgroundImage = null;
    public MContentPane() {
    super();
    * Returns the background image
    * @return Background image
    public Image getBackgroundImage() {
    return backgroundImage;
    * Sets the background image
    * @param backgroundImage Background image
    public void setBackgroundImage(Image backgroundImage) {
    this.backgroundImage = backgroundImage;
    * Overrides the painting to display a background image
    protected void paintComponent(Graphics g) {
    if (isOpaque()) {
    g.setColor(getBackground());
    g.fillRect(0, 0, getWidth(), getHeight());
    if (backgroundImage != null) {
    g.drawImage(backgroundImage,0,0,this);
    super.paintComponent(g);
    Now the background image displays correct. But as soon as I click on some combobox that is placed within the integrated JPanel I see fractals of the opened combobox on the background. When I minimize
    the Frame they disappear. Sometimes though I get also some fractals when resizing the JFrame.
    It seems there is some problem with the redrawing of the background e.g. it doesn't get redrawn as often as it should be!?
    Could anyone give me some hint, on how to achieve a clear background after clicking some combobox?
    Thx in advance

    I still prefer using a border to draw a background image:
    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.border.*;
    public class CentredBackgroundBorder implements Border {
        private final BufferedImage image;
        public CentredBackgroundBorder(BufferedImage image) {
            this.image = image;
        public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) {
            int x0 = x + (width-image.getWidth())/2;
            int y0 = y + (height-image.getHeight())/2;
            g. drawImage(image, x0, y0, null);
        public Insets getBorderInsets(Component c) {
            return new Insets(0,0,0,0);
        public boolean isBorderOpaque() {
            return true;
    }And here is a demo where I load the background image asynchronously, so that I can launch the GUI before the image is done loading. Warning: you may find the image disturbing...
    import java.awt.*;
    import java.io.*;
    import java.net.URL;
    import javax.imageio.*;
    import javax.swing.*;
    import javax.swing.border.*;
    public class BackgroundBorderExample {
        public static void main(String[] args) throws IOException {
            JFrame.setDefaultLookAndFeelDecorated(true);
            JFrame f = new JFrame("BackgroundBorderExample");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JTextArea area = new JTextArea(24,80);
            area.setForeground(Color.WHITE);
            area.setOpaque(false);
            area.read(new FileReader(new File("BackgroundBorderExample.java")), null);
            final JScrollPane sp = new JScrollPane(area);
            sp.setBackground(Color.BLACK);
            sp.getViewport().setOpaque(false);
            f.getContentPane().add(sp);
            f.setSize(600,400);
            f.setLocationRelativeTo(null);
            f.setVisible(true);
            String url = "http://today.java.net/jag/bio/JagHeadshot.jpg";
            final Border bkgrnd = new CentredBackgroundBorder(ImageIO.read(new URL(url)));
            Runnable r = new Runnable() {
                public void run() {
                    sp.setViewportBorder(bkgrnd);
                    sp.repaint();
            SwingUtilities.invokeLater(r);
    }

  • Fx-background-image and rounded borders

    Hi,
    I am trying to use a simple image as background image for an HBox through repetition, but I have found a problem. The HBox has got rounded borders (using fx-background-radius) and when I set the background image with fx-background-image it does not fit the real borders of the HBox and it appears painted outside the limits.
    The css code is the following:
    -fx-background-radius: 0 0 30 30;
    -fx-background-image:url('image1.png');
    -fx-border-radius: 0 0 30 30;
    -fx-border-width:0 2 2 2;
    -fx-border-color:#D9D9D9 #D9D9D9 #D9D9D9 #D9D9D9;
    -fx-effect: dropshadow( two-pass-box , rgba(0,0,0,0.35) , 20.13095238095238,0.5 , 0 , 18 ); Is this the expected behaviour? If a try it with background-color, it adjusts perfectly to the rounded borders. Should I set another property? (I have tried with fx-background-size and fx-background-repeat and fx-background-position but with no result)
    Thanks in advance.
    Regards.

    This probably is expected behaviour.
    The properties for background fills (color, insets, radius) donot work together with the properties for background images (image, position, repeat, size). They are separate and painted in separate passes in order, quote from the CSS doc below:
    >
    Each Region consists of several layers, painted from bottom to top, in this order:
    background fills
    background images
    contents
    border strokes
    border images

  • Match Background Image and Browser Image

    Hello,
    I am using a background image that I created for my page background. I would like it to be the same image for the browser background as well vs. the solid color option.
    I've attached the same image and when it is live, the color is off (it's a gray image with a texture treatment). So, it looks like a box and then another box.
    Anyway to get around this? Should I resize? Can I make the background image bleed so it takes over the browser background?
    I tried making the page size large, but then on screen, the scroll bar made everything of center.
    Help please!
    Thanks!

    Have you tried setting your page background to none?
    If you do this you will only see the browser background (with your image on it) when published.
    David

  • How do I center my background image and get a round border radius?

    <!--I thought I had pretty straight forward CSS, but the image is way to the top and I can't create a border radius. Below is my CSS-->
    body {
      background-color: rgba(30,30,30,1);
      background-image: url('images/me_atsunsetbackground1.JPG');
      background-repeat: no-repeat;
      background-position: center;
      background-border-radius: 100%;
      position: fixed;
      margin-top: 250px;

    That doesn't surprise me, that code wasn't meant to be a direct replacement for yours, it's just there to illustrate an idea for Nancy.
    The <body> tag itself should not be changed in that manner because the <body> holds ALL of your site's visual elements. If you were to change the <body> in the way you are attempting (which isn't possible), everything in your site would need to be within that oval.
    If you just want an oval background image on the <body>, turn the image itself into an oval in Photoshop and outside the oval, either use the same color as the <body> background-color, or leave it transparent and save it as a .png with transparency.
    Your inset shadow css is badly malformed...
    1. The attribute "shadow" doesn't exist. You're looking for CSS3 box-shadow.
    2. Safari and DW need the -webkit- prefix to display it (again, you need to test in more than one browser)
    3. The settings need to be in the correct order: h-shadow, v-shadow, blur, spread, inset (something like box-shadow:10px 10px 5px 5px rgba(255, 255, 255, .5) inset;
    Keep in mind, css3 settings (like rgba color settings and box-shadow in its entirety) don't work in IE8 and lower at all, and are pretty spotty in IE9.

  • No background images and missing styles - everything white

    somehow every page on firefox displays white with no style or background images. I thought it might have been something having to do with firebug or developer plugin, so I disabled them both, upgraded to the latest firefox version and STILL I have a white screen.

    I appreciate the response. I checked the settingx you suggested and everything was correct.
    I'm on a mac. Below is the shot of the firefox post we're in right now.
    http://calproject.com/firefox/screen-shot-firefox-page.png
    So this is not a specific site - its ALL sites... As you can see.... all images and color are missing.
    Thanks!

  • Can't Change Lock Screen Background Image and User Account Picture in Windows 8.1.

    I am running Windows8.1 Single Language with windows activated. Upgraded from Window 8 to Windows 8.1.
    Lenovo Y410p.
    4th generation Intel® Core™ i7-4700MQ (2.40GHz 1600MHz 6MB) with 16GB RAM.
    NVIDIA® GeForce® GT750M 2GB .
    I tried all methods that I found on web included :
    1. http://www.askvg.com/fix-cant-change-lock-screen-background-and-user-account-picture-in-windows-8/
    2. http://answers.microsoft.com/en-us/windows/forum/windows8_1-desktop/lockscreen-issues-on-windows-81/c51f570a-7a69-4e92-8348-3ebbed778592
    3. I deleted the C:\ProgramData\Microsoft\Windows\SystemData file and folder
    4. I restored the Libraries Features.
    5. I run SFC / Scannow 3 times but get no error.
    6.  I created a new local account but the same problem shows up. (I'm using live for main account.)
    Now, Please tell me what should I do, Thanks.

    Hi,
    First of all, please run the command slmgr.vbs /dlv
    After that, check the License status if it is licensed.
    Is there any error message when you couldn't change lock background or this option just grey out?
    Roger Lu
    TechNet Community Support

  • Background image and buttons

    I got 4 different images. I want to use these images as a background.
    They have to change as soon as the buttons is clicked. I got four buttons.
    Name of the pichtures image1.jpg etc
    the buttons btn1 etc
    I think its possible but i dont know how to work with backgrounds

    ok, that is a start, but as i said im not a real flash user and creater.
    So im gonna need some extra help,
    You might remember kglad that you helped me before. if not I'll post the script.
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    var bar1s:Number = 73.05;
    var bar1e:Number = 665;
    var bar2s:Number = 37.85;
    var bar2e:Number = 630;
    var bar3s:Number = 1.6;
    var bar3e:Number = 595;
    var time:Number = 2;
    trace("bar 1 start" + tweenRight11 +" start "+ bar2s +" end "+ bar2e);
    trace ("The X position of myBox_mc is "+ bar2.x);
    bar1.addEventListener(MouseEvent.CLICK, movebar1);
    var tweenRight11:Tween;
    var tweenLeft11:Tween;
    var tweenLeft12:Tween;
    var tweenLeft13:Tween;
    var tweenLeft14:Tween;
    var tweenLeft15:Tween;
    var tweenLeft16:Tween;
    function movebar1(e:MouseEvent):void{
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2s)< 2) && (Math.abs(bar1.x-bar1s)< 2)){
         tweenRight11 = new Tween(bar1, "x", Strong.easeOut, bar1s, bar1e, time, true);
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2s)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
         tweenLeft11 = new Tween(bar1, "x", Strong.easeOut, bar1e, bar1s, time, true);   
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2e)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
         tweenLeft12 = new Tween(bar1, "x", Strong.easeOut, bar1e, bar1s, time, true);
         tweenLeft13 = new Tween(bar2, "x", Strong.easeOut, bar2e, bar2s, time, true);
         if  ((Math.abs(bar3.x-bar3e)<2) && (Math.abs(bar2.x-bar2e)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
         tweenLeft14 = new Tween(bar1, "x", Strong.easeOut, bar1e, bar1s, time, true);
         tweenLeft15 = new Tween(bar2, "x", Strong.easeOut, bar2e, bar2s, time, true);
         tweenLeft16 = new Tween(bar3, "x", Strong.easeOut, bar3e, bar3s, time, true);
    bar2.addEventListener(MouseEvent.CLICK, movebar2);
    var tweenRight21:Tween;
    var tweenRight22:Tween;
    var tweenRight23:Tween;
    var tweenLeft21:Tween;
    var tweenLeft22:Tween;
    var tweenLeft23:Tween;
    function movebar2(e:MouseEvent):void{
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2s)< 2) && (Math.abs(bar1.x-bar1s)< 2)){
         tweenRight21 = new Tween(bar1, "x", Strong.easeOut, bar1s, bar1e, time, true);
        tweenRight22 = new Tween(bar2, "x", Strong.easeOut, bar2s, bar2e, time, true);
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2s)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
        tweenRight23 = new Tween(bar2, "x", Strong.easeOut, bar2s, bar2e, time, true);
         if  ((Math.abs(bar3.x-bar3e)<2) && (Math.abs(bar2.x-bar2e)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
         tweenLeft21 = new Tween(bar2, "x", Strong.easeOut, bar2e, bar2s, time, true);
         tweenLeft22 = new Tween(bar3, "x", Strong.easeOut, bar3e, bar3s, time, true);
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2e)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
         tweenLeft23 = new Tween(bar2, "x", Strong.easeOut, bar2e, bar2s, time, true);
    bar3.addEventListener(MouseEvent.CLICK, movebar3);
    var tweenRight31:Tween;
    var tweenRight32:Tween;
    var tweenRight33:Tween;
    var tweenRight34:Tween;
    var tweenRight35:Tween;
    var tweenRight36:Tween;
    var tweenLeft31:Tween;
    function movebar3(e:MouseEvent):void{
         trace(bar3.x,bar3s,bar3e,":",bar2.x,bar2s,bar2e,":",bar1.x,bar1s,bar1e);
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2s)< 2) && (Math.abs(bar1.x-bar1s)< 2)){
         tweenRight31 = new Tween(bar1, "x", Strong.easeOut, bar1s, bar1e, time, true);
        tweenRight32 = new Tween(bar2, "x", Strong.easeOut, bar2s, bar2e, time, true);
         tweenRight33 = new Tween(bar3, "x", Strong.easeOut, bar3s, bar3e, time, true);
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2s)< 2) && (Math.abs(bar1.x-bar1e)< 2)) {
         tweenRight34 = new Tween(bar2, "x", Strong.easeOut, bar2s, bar2e, time, true);
         tweenRight35 = new Tween(bar3, "x", Strong.easeOut, bar3s, bar3e, time, true);
         if  ((Math.abs(bar3.x-bar3s)<2) && (Math.abs(bar2.x-bar2e)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
         tweenRight36 = new Tween(bar3, "x", Strong.easeOut, bar3s, bar3e, time, true);
         if  ((Math.abs(bar3.x-bar3e)<2) && (Math.abs(bar2.x-bar2e)< 2) && (Math.abs(bar1.x-bar1e)< 2)){
         tweenLeft31 = new Tween(bar3, "x", Strong.easeOut, bar3e, bar3s, time, true);
    You see that the button is the bar and slides, that is all working and tested real good. Now that is the bar is clicked and that will move the bar but it will have to change the background
    what do you think

  • Background image and CSS?

    I am building a page to resemble our companies website.  Right now my page is linking to some external images.  I think this maybe affecting how my background looks.  If you look at this link: http://www.ournewspace.com/melanieshefchik
    You will see a big grey box behind my body and if you look even further you will see a green box pattern behind that.   I would like that green pattern to be the entire background.  How can I get rid of that grey?
    Thanks.

    The grey you are seeing is in the actual images.  You would ned to remove the gray from the images in order for the grey to not appear.

  • SCOM 2012 Map Availability

    I have a question about using the Summary Dashboard - Map feature.
    I am looking to setup several locations around the globe on this map.
    If all of the servers in this group are up, I want to display the site as green on the map.  If one of the servers goes down or has a critical issue, I want to turn the locations icon red.
    Is this possible to do with the base scom installation without purchasing third party applications/management packs?
    Thanks for your time.  I appreciate it.

    Update: Some wrong Information from me(Should stop posting that early :D)
    With UR2 at least you can build a Map Dashboard by using the new "Topology Widget". This will allow to use a Map as Background Image and add multiple Objects on it.
    Please check:
    http://blogs.technet.com/b/momteam/archive/2014/04/24/new-widgets-and-dashboard.aspx
    Cheers
    Christoph Maresch | My blogs: blog.cmaresch.at | XING:
    Christoph Maresch
    | Linkedin:
    Christoph Maresch

  • SCOM 2012 Service Level Dashboard

    I have been tasked with creating a Service level dashboard for SCOM 2012. After reading up on various blogs and sites around methods and BI / reporting tools I am no closer to knowing what would be the best solution, and would appreciate some guidance.
    I want to create SLO groups for applications - Exchange, AD, SQL, SCCM etc. and have a high level heat map with measures like CPU util, Disk space %, latency etc. updated every minute and displayed in each block (preferably using corners of a single block),
    and if possible to add a bootstrap style icon into each block.
    I would like drill down functionality on each group that then breaks down into another heatmap (per server).
    And then to drill down further which displays a SLD type dashboard on that instance.
    I am comfortable with creating the final level SLD using widgets, would it be possible to use Visio for the heatmaps ?
    I have looked into using Power View, would conditional formatting be a better option ? 
    Id like to publish the dashboard into Sharepoint.
    Would appreciate your feedback. Once i know which solution to look into, it would become much easier to focus my attention.

    Hi,
    I would like to suggest you refer to the articles below:
    Creating a Service Level Dashboard
    http://technet.microsoft.com/en-us/library/hh212692.aspx
    Monitoring Service Level Objectives by Using Operations Manager
    http://technet.microsoft.com/en-us/library/hh212753.aspx
    For more information on the Visio 2010, Sharepoint 2010 and Savision LiveMaps
    solutions, see the excellent blog series by SCOM MVP Marnix Wolf from the link
    below:
    http://thoughtsonopsmgr.blogspot.com/2010/09/scom-and-dashboards.html
    Regards,
    Yan Li
    Regards, Yan Li

  • Issues with Monitoring Azure services with SCOM 2012 R2

    Hi,
    I'm trying to setup monitoring of our Azure subscriptions in a new installation of Operations Manager 2012 R2 which is running in-house as it is also monitoring our internal services.  I've used the guide below:
    http://blogs.msdn.com/b/walterm/archive/2013/04/13/first-impressions-on-system-center-management-pack-for-windows-azure-fabric-preview-for-scom-2012-sp1.aspx
    This has all worked OK and I've been able to add the subscription into OP Manager and it's found the cloud service, storage and VM's.  However when I try to add the monitoring and I go to create this When I select the Add option in the Add Monitoring
    Wizard and click the Search button to list the components (Cloud Service, Storage and VM's) nothing is found despite me having already selected the subscription.
    Has anyone else experienced this or can offer any advice?
    Many Thanks
    Colin

    Hi,
    Which version of RDP client you are using for your client?
    Does more user login at same period of time?
    As you have commented that after sticking the user can’t able to login in RDCB server, here I can suggest you to check the setting of connection broker. Also you can check that you have place the proper location path of UPD while configuring in collection configuration
    wizard. You can take a look at below article foe virtual desktop configuration.
    Deploying Virtual Desktops with Windows Server 2012
    Are you trying to use same UPD for different collection then also it might happens to occur your issue. The fact of UPD is User profile disks are for a single collection only. A user connecting to two different collections will have two separate profiles. If
    you want to synchronize settings, refer to Microsoft User Experience Virtualization. Go through this article for more understanding related to UPD.
    Working with User Profile Disks on Session-Based Desktop Deployments
    Hope it helps!
    Thanks.

Maybe you are looking for