JpopupMenu doesn't popup in Java6

I have a window set up as a drop target for receiving urls and files. When files or urls are dropped, a popup menu is generated based on what has been dropped and then the menu is shown.
In Java 1.4 this all worked fine when the Drop Target window extended JWindow, but not now in J6. The only way I can get this to work is to extend JFrame, but then I get an extra window showing in the Windows taskbar which I don't want. I've did try extending JDialog but this fails to show the popup menu also.
Can anyone help?
Thanks
KC

I'd create a SSCCE to demonstrate your problem.
There are too many classes involved to 'guestimate' what could be causing your problem.
... and JPopupMenu works fine for me, and I bet everyone else, so there has to be a problem with your code.
Maybe you should just completely recode the particular area that's giving you problems? People always try to 'adapt' their code... I've always had better luck just using the new tools from the ground up.

Similar Messages

  • Java JPopupMenu doesn't work on OSX

    Using OSX 10.6.4 and Java 1.6.0_22, the JPopupMenu doesn't appear to work.
    Simple code:
    public static void main(String args[]){
    final JPopupMenu popup = new JPopupMenu();
    popup.add(new JMenuItem("first"));
    JMenu sub = new JMenu("sub");
    sub.add(new JMenuItem("next level"));
    popup.add(sub);
    popup.setVisible(true);
    The 'first' item does respond if you click it, but the sub menu will never open, nor will the first item respond to a mouse over.
    Any ideas? Help would be very much appreciated

    Yep, go back to what works, appears to be the only real solution. But then you'd hardly be able to use Firefox as nothing is going to get fixed there only get broken.
    What does not work is
    # move, and resize of main window not allowed
    # that include wiping out a lot of keyword shortcuts that do that
    # various additional collateral damage
    The solutions (work arounds) that I can best offer are clumsy but can be found in
    * http://kb.mozillazine.org/Resizing_oversize_window#JavaScript_no_longer_allowed_to_resize_windows

  • ScreenShareExampleSpark - Adobe ScreenSharing doesn't popup

    I'm running the ScreenShareExampleSpark from the just updated sampleApps folder.
    on Windows Vista, lccs.swc updated  and Flax SDK 4.1
    The example works fine locally on my notebook, but the same code doesn't works online on my test website.
    The "Adobe ScreenSharing" fire  but doesn't popup.
    Any advice?
    Thanks.

    Hi,
    I believe this will get fixed with our patch update that is coming today.
    Thanks
    Hironmay Basu

  • Keyboard doesn't popup on Samsung i9000

    When I click, cursor/caret is on the test field but soft keyboard
    doesn't popup. Shall I call some function to popup the keyboard ?
    It works in simulator but not in real device.

    Hi,
    I build a very simple android application using Flex4.5. It works fine in my Samsung i9000. Here is my code:
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark" title="Home">
    <s:TextInput text="hello" width="200"/>
    </s:View>
    When I click the textinput in my phone, the soft keyboard can be popup. So can you attach your code here?
    Thanks,
    Xia

  • My computer doesn't recognize my iphone - i plug it in to sync it but it doesn't popup in  itunes

    my computer doesn't recognize my iphone - i plug it in to sync it but it's icon doesn't popup in  itunes - what's wrong?

    this is weird, but it ususally works for me: try blowing in both ends of your usb plug to make sure theres not any dust lurking there. do the same to the baottom of your iphone where you plug the cord into. its not a techy kind of solution but it works for me and my friends.

  • "FlashCards" doesn't popup on my Satellite C855

    Hello,
    Toshiba Satellite C855-T13 Windows 7 64-bit
    I had a problem with my LAN card. After lots of work trying to fix it I got a Restore Point that fixed it. However my FlashCards doesn't popup anymore, although the function keys work alright.
    I have tried to reinstall the "Value Added Package Setup" but it fails reporting: "Another version of this product is already installed..." {066CFFF8-12BF-4390-A673-75F95EFF188E}
    I can't find what to uninstall.
    I tried to install in Safe Mode but still there are something running that precludes the installation. Does anyone knows what's the name of the exe, dll or whatever that runs the FlashCards?
    Any idea?

    Try please to reinstall Toshiba value added package. At first remove preinstalled version from the system (control panel Programs and features), restart your notebook and install latest version from here .
    Please do this at first and send some feedback.

  • JPopupMenu with JInternalFrame, popup menu doesn't work

    hi, i have this problem, as shown in the sample code at the end of this post.. basically, i have a table, and i added a JPopupMenu onto the table.. the popup menu works well when running the table class, though, when i call the table class in a JInternalFrame environment, the popup menu won't work.. anyone know why?
    ///Basic sample table code, when run this alone, the popup menu will work
    import java.util.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class TableBasic extends JPanel
         private JTable table;
         public TableBasic()
              String[] columnNames = { "Date", "String", "Integer", "Boolean" };
              Object[][] data =
                   {  { new Date(), "A", new Integer(1), Boolean.TRUE },
                        { new Date(), "B", new Integer(2), Boolean.FALSE },
                        { new Date(), "C", new Integer(9), Boolean.TRUE },
                        { new Date(), "D", new Integer(4), Boolean.FALSE}
              table = new JTable(data, columnNames)
                   //Returning the Class of each column will allow different
                   //renderers to be used based on Class
                   public Class getColumnClass(int column)
                        return getValueAt(0, column).getClass();
              table.setPreferredScrollableViewportSize(table.getPreferredSize());
              JScrollPane scrollPane = new JScrollPane(table);
              add(scrollPane);
         public void createPopupMenu()
              JMenuItem menuItem;
              //Create the popup menu.
              JPopupMenu popup = new JPopupMenu();
              menuItem = new JMenuItem("A popup menu item");
              //menuItem.addActionListener(this);
              popup.add(menuItem);
              menuItem = new JMenuItem("Another popup menu item");
              //menuItem.addActionListener(this);
              popup.add(menuItem);
              //Add listener to the text area so the popup menu can come up.
              MouseListener popupListener = new PopupListener(popup);
              table.addMouseListener(popupListener);
         public static void main(String[] args)
              JFrame frame = new JFrame();
              TableBasic table = new TableBasic();
              table.createPopupMenu();
              frame.setContentPane(table);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.pack();
              //frame.setLocationRelativeTo(null);
              frame.setVisible(true);
         class PopupListener extends MouseAdapter
              JPopupMenu popup;
              PopupListener(JPopupMenu popupMenu)
                   popup = popupMenu;
              public void mousePressed(MouseEvent e)
                   maybeShowPopup(e);
              public void mouseReleased(MouseEvent e)
                   maybeShowPopup(e);
              private void maybeShowPopup(MouseEvent e)
                   if (e.isPopupTrigger())
                        popup.show(e.getComponent(), e.getX(), e.getY());
    ///when integrate the previous table into here, popup menu won't work
    import java.awt.*;
    import javax.swing.*;
    public class InternalFrameBasic
         extends JFrame
         //implements ActionListener
         private JDesktopPane desktop;
         private JInternalFrame menuWindow;
         public static final int desktopWidth = 800;
         public static final int desktopHeight = 700;
         public InternalFrameBasic(String title)
              super(title);
              //Set up the GUI.
              desktop = new JDesktopPane();
              desktop.putClientProperty("JDesktopPane.dragMode", "outline");
              //Because we use pack, it's not enough to call setSize.
              //We must set the desktop's preferred size.
              desktop.setPreferredSize(new Dimension(desktopWidth, desktopHeight));
              setContentPane(desktop);
              createMenuWindow();
              desktop.add(menuWindow); //DON'T FORGET THIS!!!
              Dimension displaySize = menuWindow.getSize();
              menuWindow.setSize(desktopWidth, displaySize.height);
         private void createMenuWindow()
              menuWindow =
                             new JInternalFrame("Event Watcher", true, //resizable
                                                                                                   true, //closable
                                                                                                   false, //not maximizable
                                                                                                   true); //iconifiable
              menuWindow.setContentPane(new TableBasic());
              menuWindow.pack();
              menuWindow.setVisible(true);
          * Create the GUI and show it.  For thread safety,
          * this method should be invoked from the
          * event-dispatching thread.
         private static void createAndShowGUI()
              //Make sure we have nice window decorations.
              //JFrame.setDefaultLookAndFeelDecorated(true);
              //Create and set up the window.
              JFrame frame = new InternalFrameBasic("Example Internal Frame");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              //Display the window.
              frame.pack();
              frame.setVisible(true);
         public static void main(String[] args)
              //Schedule a job for the event-dispatching thread:
              //creating and showing this application's GUI.
              javax.swing.SwingUtilities.invokeLater(new Runnable()
                   public void run()
                        createAndShowGUI();
    }

    table.createPopupMenu();The above line should not be in the main method. It should be in the constructor class of TableBasic.
    You never execute that method in your InternalFrameBasic class to the mouse listener never gets added to the table.

  • JPopupMenu doesn't work when invoker is not a Swing JComponent ??

    I've written some code that uses a java.awt.Canvas to draw some stuff, and I want to be able to bring up a popup menu over the canvas.
    The problem is that when I try to show the popup menu with my Canvas as the invoker nothing happens: no popup menu appears.
    I also have problems with other AWT components (e.g. with java.awt.TextArea the popup comes up with two clicks but gets hidden behinf the popup that TextArea decides to provide).
    However everything works fine when I use a Swing widget (e.g. JTextArea or JPanel) as the invoker of my popup menu.
    Is this a bug or an undocumented feature?
    The JPopupMenu.show(...) method will happily accept any AWT Component as the invoker. Also the API documentation says nothing on this issue. Also the Swing tutorials doesn't say anything about this.
    I'm tempted to conclude this is an undocumented feature, but that suprises me. Surely I'm not the first person to try and use JPopupMenu with an AWT widget as invoker? Before I file a bug report, can someone tell me if I'm missing something here?
    I have some code to demonstrate this; all you have to do is comment one line and uncomment another to repoduce this behaviour. Let me know if you would like me to post it.

    Quick followup for anyone reading this topic:
    The suggestion of using JPanel and overriding paintComponent(...) is the way to go. I had thought of doing this to begin with, but felt it would be more effort. It's not. It's the same effort as using AWT canvas, but gives better results, and doesn't stuff up JPopupMenu or anything else that wants to interact with a lightweight component.

  • JPopupMenu doesn't show up

    Hi all
    I'm using a popup to work like a combobox in an applet. it works fine on my machine, but i think it's because i have java 1.4 installed. the standart jre in our company is 1.3, and in this version the popup doesn't show up. any ideas?
    my code:
    popup = new JPopupMenu();
    JPanel popPanel = new JPanel();
    ok = new JButton("Ok");
    popPanel.setLayout(new BorderLayout());
    popPanel.add("Center",calendar);
    popPanel.add("South",ok);
    popup.add(popPanel);and when it has to show up
    popup.show(this,0,0); \\ this is an extended JComponenti also tried with popup.setDefaultLightWeightPopupEnabled(false); but there was no difference
    and does anyone know, how i can get rid of the text 'Java Applet Window' below the popup?
    thanks for help

    ok, i found out, that it doesn't appear, when its defined lightweight.. how can set the JPopupMenu heavyweight??
    like i read in other threads the method
    popup.setDefaultLightWeightPopupEnabled(false);
    doesn't work properly!

  • JPopupMenu doesn't work in Windows?

            if (e.isPopupTrigger()) {
                popup.show(e.getComponent(),
                        e.getX(), e.getY());
            }I use the code above to check for a right click and display a JPopupMenu. It works fine in Linux, but in Windows (XP/2000) nothing happens.
    The API for isPopupTrigger() says:
    Note: Popup menus are triggered differently on different systems. Therefore, isPopupTrigger should be checked in both mousePressed and mouseReleased for proper cross-platform functionality.
    So, I've added the code to both mousePressed() and mouseReleased(), yet nothing happens.

    Best, it is that you looks at the tutorial of Sun.
    Me I have to recopy the example which they give and it goes... Perhaps you did not make addMouseListener(...):
    public void mousePressed(MouseEvent me) {
         maybeShowPopup(me);
    public void mouseReleased(MouseEvent me) {
         maybeShowPopup(me);
    private void maybeShowPopup(MouseEvent e) {
         if (e.isPopupTrigger()) {
             pere.getPopupMenu().show(e.getComponent(), e.getX(), e.getY());

  • Own JDialog - works with java5, doesn't work with java6

    Hello,
    I'm working on map editor for a bigger project and I'm stuck with displaying my own JDialog (grrr...). I found out that problem occurs only with java6. See the screenshots below:
    java5
    http://student.agh.edu.pl/~kdzwinel/Projects/TrafficSim/MapEditor/good.jpg
    java6
    http://student.agh.edu.pl/~kdzwinel/Projects/TrafficSim/MapEditor/wrong.jpg
    And some implementation details:
    how do I create new dialog:
    NewMapDialog dialog = new NewMapDialog(this);
    dialog.setVisible(true);how dialog class looks like:
    public class NewMapDialog extends JDialog implements ActionListener, ChangeListener
         NewMapDialog(Main owner)
              super(owner,"New map",true);
              this.setAlwaysOnTop(true);
              this.setSize(200, 280);
              this.setResizable(false);
              this.setLocationRelativeTo(owner);
              makeLayout();
         private void makeLayout()     
              Container content = getContentPane();
              content.setLayout(new FlowLayout());
    //(...) <- add stuff
    }That is so simple that I'm really confused. I will appreciate some help.
    Regards,
    Konrad
    Edited by: kdzwinel on Feb 5, 2008 6:23 PM

    kdzwinel wrote:
    Hm, creating my applications I extend JFrame, JPanel, JLabel all the time, what is wrong with extending JDialog?In this case your class contained two methods that were already defined to mean something completely different in the class you derived from. That's just one example of what can go wrong when you use inheritance. Had you used composition rather than inheritance (i.e. your class contained a JDialog rather than being a JDialog) this problem would never have happened.
    Such an extension was quite natural for me to use because I was looking for this dialog to be modal. And I guess making JFrame modal is not so trivial.
    You can make a modal JDialog without extending JDialog, so that's not a problem.
    BTW, funny thing is that this 'mistaken' code worked just fine with java5 - I was confused by this fact so my first guess was that I messed something up with panes/layouts.Another reason you should be careful with inheritance: your program may break from implementation changes in the library code you are using and extending. Maybe Java 5 does not use those two methods when it "draws the dialog". Again, had you been using composition your program would not have been affected.
    If you can, get your hands on a copy of "Effective Java" by Joshua Bloch, and read chapter 14 "Favor composition over inheritance". He explains this much better than I can.

  • Signed applet doesn't popup "trust applet" dialog

    Hi,
    I have the following situation with a Java applet:
    It is VeriSign signed and needs access to the hard drive.
    It works fine on most computers and prompts the user if they want to trust the applet.
    But on some computers this trust window never appears.
    The window I'm talking about is this:
    Warning - Security
    The application's digital signature has been verified.
    Do you want to run the application?This question just won't show up on some computers.
    I know that some of them are running Vista, and I know that UAC is causing major issues (I found a site explaining the reason).
    Is there anything simple that I can tell Vista users to do to give permission to the applet to run?
    Is there anything at all I can tell Vista users?
    Thanks!

    Dunno why Vista or XP or IE would be causing this with settings... except to not let applets run at all. The signing control is managed entirely by the plugin in any recent Java version (1.4+, at least).
    Untrusted applets would have to be added to a list, if there was one, which I'm not aware of a list.
    If this were an issue with default configs on Vista or XP or IE, believe me I would have heard about it all up and down the last year+. Early last year, we released a new applet which is signed, and that's how I know that 1.4.1_02 doesn't work at all. And late last year we actually started using new functionality that would take advantage of the signed applet (talking to another server) so, if that didn't work on a lot of client's PC's, I would have heard long before now.
    What is the problem, actually? Is the applet running at all? If so, are you sure it's not running as a signed applet (can you test with something an unsigned applet couldn't do)? Cuz there is the "remember this decision" option so you don't have to get the warning more than once from the same signer.

  • JPopupMenu behavior in an applet

    Hi all,
    When I click on an applet a JPopupMenu appears.
    The trouble is when I don't want to click on a JMenuItem : if I just want to return to the web page content by clicking on it the JPopupMenu doesn't hide.
    A solution is to click in an other area of the applet but mine is very small as its purpose is to provide a popup menu.
    I could provide a JMenuItem to hide the JPopupMenu but I don't find this solution very elegant.
    Anyone have an idea of how to resolve this problem, without hacking with javascript which would give me other problems of compatibility between browsers...
    Regards,
    Jean-Hugues de Raigniac

    Try adding a focus listener to the JPopupMenu. I am not positive on this but see if the popup menu is getting a focusLost event when you click outside if it ( even outside of the applet ).
    Bryan

  • JTextArea popups up when clicking JTextField

    The project I'm working on requires an input field, single line which can popup a JTextArea for multiple line input.
    So, when user selects ID in a combobox the component doesn't popup the textarea but has the normal JTextField behaviour. When the user selects address, the TextArea pops up to fill in the four lines and when the textarea is closed only the first line will be visible in the input field (JTextField).
    What I did is: I looked at the way the JComboBox works and I made a subclass of the JPopupMenu which holds the textarea, so when focussing the JTextField the focus is displaced to the textarea. But when the focus is Lost I get a nasty error when I want to close the JpopupMenu.
    My question: Are there other possibilities with Swing components to satisfy the requirement or is the way I'm working the best one
    Thnx

    Hi,
    this sounds bad to me - what about a JPanel with a
    Card-Layout in it - there you hold 2 JPanels in it,
    one with the JTextField and one with the JTextArea in
    it - by using Card-Layout you have the effort of
    choosing one of its "cards" to show while the others
    are in the background "under" this card.Well the reason is that the layout of all other GUI components may not change, I mean move down.
    They want to have it as a JTextField, but in rare occassion a TextArea must be visible.
    Isn't there a way that will show the textarea floating over the JTextField?
    I hope, this will give you an idea, how to do this
    greetings Marsian

  • Suddenly patches doesnt popup in few client machines to install in SCCM 2007 R2 MIXED MODE

    SCCM 2007 R2, MIXED MODE
    Suddenly patches doesn't popup in few client machines to do installation(there is no advertisement in the client machines to install
    below are the log files content which I have checked.
    1)WUAhandler.log
    Its a WSUS Update Source type ({F625B1D2-59D4-48B2-9ACF-859A9A1276B2}), adding it. WUAHandler 1/12/2015 12:47:15 PM 992532 (0xF2514)
    Unable to read existing resultant WUA policy. Error = 0x80070002. WUAHandler 1/12/2015 12:47:16 PM 992532 (0xF2514)
    Enabling WUA Managed server policy to use server: SCCMSERVER.one.loc:80 WUAHandler 1/12/2015 12:47:16 PM 992532 (0xF2514)
    Waiting for 2 mins for Group Policy to notify of WUA policy change... WUAHandler 1/12/2015 12:47:16 PM 992532 (0xF2514)
    Waiting for 30 secs for policy to take effect on WU Agent. WUAHandler 1/12/2015 12:47:32 PM 992532 (0xF2514)
    Added Update Source ({F625B1D2-59D4-48B2-9ACF-859A9A1276B2}) of content type: 2 WUAHandler 1/12/2015 12:48:02 PM 992532 (0xF2514)
    Async searching of updates using WUAgent started. WUAHandler 1/12/2015 12:48:02 PM 992532 (0xF2514)
    Async searching completed. WUAHandler 1/12/2015 12:49:36 PM 992632 (0xF2578)
    Successfully completed scan. WUAHandler 1/12/2015 12:49:36 PM 993316 (0xF2824)
    Its a WSUS Update Source type ({F625B1D2-59D4-48B2-9ACF-859A9A1276B2}), adding it. WUAHandler 1/12/2015 12:49:38 PM 993316 (0xF2824)
    Existing WUA Managed server was already set (SCCMSERVER.one.loc:80), skipping Group Policy registration. WUAHandler 1/12/2015 12:49:38 PM 993316 (0xF2824)
    Added Update Source ({F625B1D2-59D4-48B2-9ACF-859A9A1276B2}) of content type: 2 WUAHandler 1/12/2015 12:49:38 PM 993316 (0xF2824)
    Async searching of updates using WUAgent started. WUAHandler 1/12/2015 12:49:38 PM 993316 (0xF2824)
    Async searching completed. WUAHandler 1/12/2015 12:50:04 PM 993820 (0xF2A1C)
    Successfully completed scan. WUAHandler 1/12/2015 12:50:04 PM 992720 (0xF25D0)
    Its a WSUS Update Source type ({F625B1D2-59D4-48B2-9ACF-859A9A1276B2}), adding it. WUAHandler 1/12/2015 1:01:01 PM 993464 (0xF28B8)
    Existing WUA Managed server was already set (SCCMSERVER.one.loc:80), skipping Group Policy registration. WUAHandler 1/12/2015 1:01:01 PM 993464 (0xF28B8)
    Added Update Source ({F625B1D2-59D4-48B2-9ACF-859A9A1276B2}) of content type: 2 WUAHandler 1/12/2015 1:01:01 PM 993464 (0xF28B8)
    Async searching of updates using WUAgent started. WUAHandler 1/12/2015 1:01:01 PM 993464 (0xF28B8)
    Async searching completed. WUAHandler 1/12/2015 1:01:30 PM 995000 (0xF2EB8)
    Successfully completed scan. WUAHandler 1/12/2015 1:01:30 PM 993436 (0xF289C)
    2)updatesdeployment.log
    Service startup system task UpdatesDeploymentAgent 1/12/2015 12:45:08 PM 994764 (0xF2DCC)
    Software Updates client configuration policy has not been received. UpdatesDeploymentAgent 1/12/2015 12:45:08 PM 994764 (0xF2DCC)
    Software updates functionality will not be enabled until the configuration policy has been received. If this issue persists please check client/server policy communication. UpdatesDeploymentAgent 1/12/2015 12:45:08 PM 994764 (0xF2DCC)
    Software Updates feature is disabled UpdatesDeploymentAgent 1/12/2015 12:45:08 PM 994764 (0xF2DCC)
    Software Updates client configuration policy has not been received. UpdatesDeploymentAgent 1/12/2015 12:45:08 PM 994764 (0xF2DCC)
    Software updates functionality will not be enabled until the configuration policy has been received. If this issue persists please check client/server policy communication. UpdatesDeploymentAgent 1/12/2015 12:45:08 PM 994764 (0xF2DCC)
    OnServiceWindowAvailable - No pending install assignment UpdatesDeploymentAgent 1/12/2015 12:45:08 PM 994764 (0xF2DCC)
    Startup task completed UpdatesDeploymentAgent 1/12/2015 12:45:08 PM 994764 (0xF2DCC)
    No updates associated with assignment ({062524F3-93F3-4FE8-8947-CF8CC3A7B6E4}) UpdatesDeploymentAgent 1/12/2015 12:47:11 PM 992496 (0xF24F0)
    No updates associated with assignment ({47244D7F-911E-4DD9-80BD-C42B3347F199}) UpdatesDeploymentAgent 1/12/2015 12:47:11 PM 992496 (0xF24F0)
    Enabling software Updates feature UpdatesDeploymentAgent 1/12/2015 12:47:11 PM 992180 (0xF23B4)
    Assignment {0A385917-3FC1-4F0A-84FE-D83481EEE75B} has total CI = 20 UpdatesDeploymentAgent 1/12/2015 12:47:11 PM 992180 (0xF23B4)
    Detection job ({0D7DB0FD-A239-4EDA-A8C9-3DFDD6FE956C}) started for assignment ({0A385917-3FC1-4F0A-84FE-D83481EEE75B}) UpdatesDeploymentAgent 1/12/2015 12:47:11 PM 992180 (0xF23B4)
    Started evaluation for assignment ({0A385917-3FC1-4F0A-84FE-D83481EEE75B}) UpdatesDeploymentAgent 1/12/2015 12:47:11 PM 992180 (0xF23B4)
    Assignment {9AEF1FBC-A690-43A3-92EB-063E6124B54E} has total CI = 12 UpdatesDeploymentAgent 1/12/2015 12:47:11 PM 992180 (0xF23B4)
    Detection job ({ACDA70BF-7CF8-4FA1-9ED2-D21A9C269C73}) started for assignment ({9AEF1FBC-A690-43A3-92EB-063E6124B54E}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Started evaluation for assignment ({9AEF1FBC-A690-43A3-92EB-063E6124B54E}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Assignment {1AA8E438-A50A-4C0D-A962-B3C12651266B} has total CI = 14 UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Detection job ({BDB23B8A-4554-4500-9D70-7C797468DB02}) started for assignment ({1AA8E438-A50A-4C0D-A962-B3C12651266B}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Started evaluation for assignment ({1AA8E438-A50A-4C0D-A962-B3C12651266B}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Assignment {4432FDC5-5257-418A-9195-1F596C51433C} has total CI = 18 UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Detection job ({2DC65BD0-B35A-4F10-849C-67EF80EA99E6}) started for assignment ({4432FDC5-5257-418A-9195-1F596C51433C}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Started evaluation for assignment ({4432FDC5-5257-418A-9195-1F596C51433C}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Assignment {5254B632-A24B-40B5-AF5D-C6E229FAD924} has total CI = 11 UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Detection job ({4FAEFC4C-72DC-42C7-A50B-246B3263C051}) started for assignment ({5254B632-A24B-40B5-AF5D-C6E229FAD924}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Started evaluation for assignment ({5254B632-A24B-40B5-AF5D-C6E229FAD924}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Assignment {71FAEAFD-F29A-43C1-93DB-254538410744} has total CI = 28 UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Detection job ({F30AFBAE-938F-4106-83F0-903444FD8181}) started for assignment ({71FAEAFD-F29A-43C1-93DB-254538410744}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Started evaluation for assignment ({71FAEAFD-F29A-43C1-93DB-254538410744}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Assignment {056A9976-F4AD-47CB-B2B2-3B942EFB1616} has total CI = 20 UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Detection job ({9BD000DB-5F03-4AE7-815F-CF356DA85869}) started for assignment ({056A9976-F4AD-47CB-B2B2-3B942EFB1616}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Started evaluation for assignment ({056A9976-F4AD-47CB-B2B2-3B942EFB1616}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Assignment {E3B482FC-3533-4943-B745-648130306C6C} has total CI = 15 UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Detection job ({A6DD6721-E26D-445B-97D8-0BD587244360}) started for assignment ({E3B482FC-3533-4943-B745-648130306C6C}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Started evaluation for assignment ({E3B482FC-3533-4943-B745-648130306C6C}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Assignment {814FD998-B1B3-4B0A-A309-1FF2D5D019F0} has total CI = 7 UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Detection job ({DF14FECD-0803-41E0-9555-810268E729C2}) started for assignment ({814FD998-B1B3-4B0A-A309-1FF2D5D019F0}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Started evaluation for assignment ({814FD998-B1B3-4B0A-A309-1FF2D5D019F0}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Assignment {C2CAB330-0B10-4BD1-8807-D11816CD683C} has total CI = 75 UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Detection job ({54FDE667-DF53-4556-A6D5-4BB5D1612A36}) started for assignment ({C2CAB330-0B10-4BD1-8807-D11816CD683C}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Started evaluation for assignment ({C2CAB330-0B10-4BD1-8807-D11816CD683C}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Assignment {CF72C0B0-D54E-4DA7-8B36-2BED755DDF2A} has total CI = 99 UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Detection job ({417BC3FF-5CF6-4DAE-8163-5F910DC47611}) started for assignment ({CF72C0B0-D54E-4DA7-8B36-2BED755DDF2A}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Started evaluation for assignment ({CF72C0B0-D54E-4DA7-8B36-2BED755DDF2A}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Assignment {59F1EA3B-8452-432F-96F7-6FA9BAAC1C8E} has total CI = 20 UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Detection job ({5599665D-12B1-4ADC-A5C9-E562F2C12D06}) started for assignment ({59F1EA3B-8452-432F-96F7-6FA9BAAC1C8E}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Started evaluation for assignment ({59F1EA3B-8452-432F-96F7-6FA9BAAC1C8E}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Assignment {93ED37E9-7171-4C3F-A0FD-4914B5BDE4B7} has total CI = 24 UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Detection job ({F8855C0F-375F-4F0C-9640-224C4675AEF7}) started for assignment ({93ED37E9-7171-4C3F-A0FD-4914B5BDE4B7}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Started evaluation for assignment ({93ED37E9-7171-4C3F-A0FD-4914B5BDE4B7}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Assignment {A62D6201-C392-4ECE-A1F4-174469FEB9FD} has total CI = 29 UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Detection job ({C3BDFAD5-E7B0-470A-8831-AAE0126DCE4A}) started for assignment ({A62D6201-C392-4ECE-A1F4-174469FEB9FD}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Started evaluation for assignment ({A62D6201-C392-4ECE-A1F4-174469FEB9FD}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    No updates associated with assignment ({062524F3-93F3-4FE8-8947-CF8CC3A7B6E4}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Assignment {BA71BA2A-797B-4D7E-AD5D-78A7525AE6E6} has total CI = 16 UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Detection job ({E874898A-8395-4CAA-BF38-BF0FDD2024C4}) started for assignment ({BA71BA2A-797B-4D7E-AD5D-78A7525AE6E6}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Started evaluation for assignment ({BA71BA2A-797B-4D7E-AD5D-78A7525AE6E6}) UpdatesDeploymentAgent 1/12/2015 12:47:12 PM 992180 (0xF23B4)
    Assignment {60136E9C-317A-41F1-8A31-A052208B7429} has total CI = 7 UpdatesDeploymentAgent 1/12/2015 12:47:13 PM 992180 (0xF23B4)
    Detection job ({D579EF1A-EAEC-43B6-9B1C-6E5CC86AFD98}) started for assignment ({60136E9C-317A-41F1-8A31-A052208B7429}) UpdatesDeploymentAgent 1/12/2015 12:47:13 PM 992180 (0xF23B4)
    Started evaluation for assignment ({60136E9C-317A-41F1-8A31-A052208B7429}) UpdatesDeploymentAgent 1/12/2015 12:47:13 PM 992180 (0xF23B4)
    Assignment {99BA6A24-9F7B-4BFB-B132-DA7BCBFB2D73} has total CI = 14 UpdatesDeploymentAgent 1/12/2015 12:47:13 PM 992180 (0xF23B4)
    Detection job ({31DEFAF4-2F8D-469E-9D9C-02DC9AB919FD}) started for assignment ({99BA6A24-9F7B-4BFB-B132-DA7BCBFB2D73}) UpdatesDeploymentAgent 1/12/2015 12:47:13 PM 992180 (0xF23B4)
    Started evaluation for assignment ({99BA6A24-9F7B-4BFB-B132-DA7BCBFB2D73}) UpdatesDeploymentAgent 1/12/2015 12:47:13 PM 992180 (0xF23B4)
    Assignment {55159703-E6D4-41D2-88A2-9CD75536190B} has total CI = 144 UpdatesDeploymentAgent 1/12/2015 12:47:13 PM 992180 (0xF23B4)
    Detection job ({F0DB14D1-821A-49CA-8469-4B878F0C3085}) started for assignment ({55159703-E6D4-41D2-88A2-9CD75536190B}) UpdatesDeploymentAgent 1/12/2015 12:47:13 PM 992180 (0xF23B4)
    B132-DA7BCBFB2D73}) received activation trigger UpdatesDeploymentAgent 1/12/2015 12:47:28 PM 995108 (0xF2F24)
    Operation (TriggerActivate) already in progress. No need to activate. UpdatesDeploymentAgent 1/12/2015 12:47:28 PM 995108 (0xF2F24)
    -48B2-9ACF-859A9A1276B2/SUM_4834ff56-e627-4f5b-860f-e0d81645d5e6) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:13 PM 992608 (0xF2560)
    EnumerateUpdates for action (UpdateActionInstall) - Total visible updates = 0 UpdatesDeploymentAgent 1/12/2015 12:50:13 PM 992216 (0xF23D8)
    1/12/2015 12:50:17 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_db985c1b-7c51-4c4d-a244-2190e29a4d2b) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:17 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_daf427ac-5eb6-42c7-b6b9-a2379b6aac2d) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:17 PM 994128 (0xF2B50)
    EnumerateUpdates for action (UpdateActionInstall) - Total visible updates = 0 UpdatesDeploymentAgent 1/12/2015 12:50:17 PM 992216 (0xF23D8)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_a7c5e0f9-ad97-4c2f-8c79-dd4ce28f3278) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:17 PM 995324 (0xF2FFC)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_4825cb6b-8412-45a2-8595-ced595e9abc1) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:17 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_ebcb8b15-112e-4ee0-9dd9-0efd1bc965cc) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:17 PM 992556 (0xF252C)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_d877112d-2f4d-4e1b-9aad-b5638ea551a5) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:17 PM 982060 (0xEFC2C)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_9fcfdea2-adc3-4e15-a28b-acf201f80582) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:17 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_e623e3e7-835f-4058-90a9-3bd24e5b20b4) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:17 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_29f6aa0c-6ab5-4a55-9956-925b917eec95) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:17 PM 994128 (0xF2B50)
    EnumerateUpdates for action (UpdateActionInstall) - Total visible updates = 0 UpdatesDeploymentAgent 1/12/2015 12:50:17 PM 992216 (0xF23D8)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_dc0691a8-fdf2-4cbd-989d-27257472332e) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:17 PM 995324 (0xF2FFC)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_e7034e21-1cfe-4415-916a-9a87ecc9cd2f) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:17 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_04d06672-6f41-4e34-94ce-b91f06aedfb4) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 992556 (0xF252C)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_aa9e45e4-ace5-486e-8027-bf8033b264b3) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 982060 (0xEFC2C)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_f0f98c12-0e77-4ec7-a52d-b6f6fe0076e1) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_9ec613a4-1993-4288-816c-0d4816b69d73) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_5bd72fc8-8bdb-458a-95b8-4372212fe3ce) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 994128 (0xF2B50)
    EnumerateUpdates for action (UpdateActionInstall) - Total visible updates = 0 UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 992216 (0xF23D8)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_e90cfb0e-fdbb-490b-8025-bbbaef7f6d94) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 995324 (0xF2FFC)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_0cc0c76a-1e06-4226-bcfd-97a042bc7b95) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_b73e02b6-7a35-485b-a7ca-8be088fe5294) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 992556 (0xF252C)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_ef523a67-deb9-41b4-b04c-16c51ee5bffe) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 982060 (0xEFC2C)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_3061954e-edaa-4625-837c-ce768d68927d) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_90df3304-bd9c-4656-a90f-5aaca345f872) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_c6ce8da6-65fb-4a1a-8039-d43444d0689c) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 994128 (0xF2B50)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_4159078c-90a2-45ce-87c8-a525e8c8c912) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 995324 (0xF2FFC)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_33f11015-6f50-4e22-a452-66c0d7e5fbd6) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 992720 (0xF25D0)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 994128 (0xF2B50)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_a549da08-1794-4fef-8cf8-be06aaf467cb) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 992556 (0xF252C)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_0958dd0c-92b0-45d3-8588-c4034e52acaa) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 982060 (0xEFC2C)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_daba4ffe-b0b9-4fd4-aa0e-a319704b0b96) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_bb663f41-cea4-4dc4-a205-3dcb4bae28ef) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 991984 (0xF22F0)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 982060 (0xEFC2C)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_22cd83b1-3975-4e2a-b060-7203cc7434b9) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 995324 (0xF2FFC)
    EnumerateUpdates for action (UpdateActionInstall) - Total visible updates = 0 UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 992216 (0xF23D8)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_925c4fc1-6f28-4422-a980-42df72506db2) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_a75017b1-09b8-43ea-9039-1b09ec7fbfaf) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 992556 (0xF252C)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_3f05d6eb-dcb7-4f53-aa72-cd299d817e40) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_aa085bcb-1469-4418-84e9-680148c46fea) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:18 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_54d21173-5d5c-441b-8893-c14d1e13d18e) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 995324 (0xF2FFC)
    EnumerateUpdates for action (UpdateActionInstall) - Total visible updates = 0 UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992216 (0xF23D8)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_00eae34e-a8d1-411d-9050-496593a146e8) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_8a4b9399-468b-4d4d-b8ce-1a35a13c2ba3) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992556 (0xF252C)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_5ed8a2cd-f220-4a37-b472-9a93ce8f6f24) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_0eb586bd-e4d1-4e4b-a4b5-c7bba7655f7b) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_bd4aa95a-8bcb-4061-a2f2-c9ba118d705d) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 995324 (0xF2FFC)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_f2078469-4235-4c6b-9494-3c9d90f803e0) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_6cfb7d17-f556-423a-b052-0a1f0463572e) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992608 (0xF2560)
    EnumerateUpdates for action (UpdateActionInstall) - Total visible updates = 0 UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992216 (0xF23D8)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_4df03755-03b7-4ecc-84b1-4d2d598dc48d) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_a8810d50-3611-436f-91ac-39f1fbad40e6) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 995324 (0xF2FFC)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_7e7a0971-40c0-423d-aba3-38c92d0b6d1c) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_5ae1df75-eb04-4e25-aaf1-4d37082dfe04) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_63a011ac-ff81-44b9-811c-bece5dc6c34b) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 991984 (0xF22F0)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 994916 (0xF2E64)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_a4b58701-58f4-4bc6-94b0-ea96110a5efb) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992480 (0xF24E0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_bda50e11-36ac-4fb9-a56b-665dba467c2b) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 995324 (0xF2FFC)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_925423f6-39fb-4e0c-b1b9-9ccd5b1b0f18) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_8a622596-da31-47ce-8acf-90165bfb9feb) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992608 (0xF2560)
    EnumerateUpdates for action (UpdateActionInstall) - Total visible updates = 0 UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992216 (0xF23D8)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_dc9ba576-22a0-4561-90f1-a37786f567ff) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_3120c82d-2642-4257-a221-417268f200d1) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992480 (0xF24E0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_71a74817-374c-424d-bd12-e6e3076e0059) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 995324 (0xF2FFC)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_c72f0e3a-6c54-4e25-857d-63e050d34ada) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_2f795314-d322-4244-93dd-1bb084386eb7) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 992608 (0xF2560)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 995324 (0xF2FFC)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_6725e54e-bac1-43fe-84d0-4fbbe62e1483) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:19 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_a75dc249-3676-4440-9703-c0e6a5b2b94c) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992720 (0xF25D0)
    EnumerateUpdates for action (UpdateActionInstall) - Total visible updates = 0 UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992216 (0xF23D8)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_74e500b1-4b5d-4e58-937d-c58305c2bb39) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_9914cd71-3e2f-43cb-b175-d4cfe202dcbc) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_9105d9b0-0899-4b30-9405-5a3fbfaf9c3f) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_89c1f393-2809-40af-9386-2dadfb5dd028) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_c80c765b-fa42-42b4-968a-4a9a64abbd5e) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_dbea15a2-b4e5-4875-afdf-0ce5d5d2e815) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_01e49afa-5893-4d4e-8ea4-7504e4539686) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_3b42d986-5e01-4220-88ce-216941e7e86d) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_a9bd8aa1-cae7-4cb1-a36d-0fd90abdb81e) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_24de1618-7251-4105-8c47-b50d039f225f) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_7d4f18d7-9e56-4b2c-b6de-36ba66a4e1e1) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_51f12135-1d17-49bd-8e84-eb7898259b72) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_3523ef24-ce42-4d44-8c7c-dc841d569a55) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_b38bb25e-2d43-4cd9-9192-3a528529abd6) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_445e68dc-2e16-420b-9ea9-e78e4b771f03) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_33b131c5-3a56-4015-8cba-8d71d816c46c) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_72f715d0-63c7-4b79-bdb2-51776510fc1d) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_c11dac64-28ed-4aa4-bff0-785fbcdfc7ab) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992480 (0xF24E0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_2bf9a92d-d23c-4513-81c1-64a982d46262) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_903e9d9e-30a9-4156-be04-754188c23840) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_a951ba47-657d-44ef-b96d-83ecb00a10a8) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_99ca576e-12c2-4f99-9dff-2226d03f1ca0) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992480 (0xF24E0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_d44bd7d1-ec33-4a65-942c-093aec39b02b) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_0993607d-5cbf-4546-9515-28629b29d53e) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:20 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_737f6cdc-ce58-438d-a7e4-8f3fec4972f0) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_7af44814-becf-45fd-86b5-47da64f86fac) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992480 (0xF24E0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_96a281c5-06af-4741-9f4d-e9536142a4ff) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_b5fe9fec-70d7-4799-8c2a-2fab428ec3cd) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_3e952bc5-aad2-4117-ab65-a42f96298868) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_3f137251-05fd-4a74-9521-555767195b63) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992480 (0xF24E0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_15dbfa1d-cb07-45e7-b363-5bc4b9297bad) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_556c6688-5534-4cb7-99d1-a6fe2e197e16) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_7eed19c5-5caf-4f19-b2af-b2a4c29b797b) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 991984 (0xF22F0)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992720 (0xF25D0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_b3b3ef83-b34a-4094-99c1-601cf5fe32b4) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992480 (0xF24E0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_ac11237f-c458-424b-80b4-ec98e47bc062) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992608 (0xF2560)
    EnumerateUpdates for action (UpdateActionInstall) - Total visible updates = 0 UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992216 (0xF23D8)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_be57e27d-b288-4f40-a42f-bcdf0fdbf7f6) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_b1dd2c2c-cab1-4f19-ab7b-2f1145dc3549) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992480 (0xF24E0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_943ea6b3-de00-4583-b9b7-f954a28d9995) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_a7ae9de6-5553-4e93-9ff7-be5f7e9738ff) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_cda1e8ed-b1a6-4b14-bf49-73b88f99a254) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_0b5c2707-ffea-4e64-acfb-c8acc5489969) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_6bc973f3-949b-4214-a283-fcc6a39e369b) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_1e691dca-2fed-44db-90aa-cd226aea016d) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_f754e876-d249-4c94-9d47-c8acc66dfa37) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_1700c876-39fa-439b-87c3-d3865c281069) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_506c0dac-2bbb-4975-b81d-32b77abd35b1) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_afdd5d5e-2cc2-4a6a-a44f-e45a275702f5) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_94da726e-96ca-4b0d-a3e9-b0daf5b4f93f) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_5651d665-c952-441d-b949-f00a26dabc15) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:21 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_6cb3da07-a231-4427-9090-8366ab4066cc) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_6502a461-7262-48fc-b567-f8d3c2f82ae6) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_a039bffa-c1a3-4560-8e65-6e4372e7b6f6) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_8ecf4d80-288a-4f75-8ba9-a4fcff29c2d1) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_30c9694c-7833-4f9c-b36a-d0468b186c0e) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_c50a8e26-610c-422e-a8cc-fd16d8fa958c) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_41625a3f-92c4-423f-989e-dd61d464be51) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_d650b748-d885-4582-a6e7-1056c12b5a05) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_90d20513-b45b-4e36-a0d5-df667d8e6f60) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_ec137c68-fd13-45a3-88bd-fd1e0a3f4412) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_67f1954b-94b8-430b-b0c6-82e895a15788) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_75d0e393-4fc5-4cdb-9461-68a41396707e) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_d4086c7b-d238-4790-b160-c01af8350d94) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_a52147f8-e5ee-4086-9cdb-6269977edb13) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_16e9c62d-05b2-4e14-bfb0-cf55edbd4f61) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_02e7ed9d-e11e-4413-9942-4fc87b219b7b) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_dc548e48-407c-48e1-aca4-6b4c0df14e69) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_67797095-4c89-4f0e-81bb-f677fd85691d) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_5b6aff1d-677d-4d51-8bfd-487319782bb1) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_7bb7b30c-351d-4f8c-abe4-5f7965635a03) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:22 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_f4695a25-0d22-4e3b-9ba9-9bbc62198c28) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_5bcda2fe-a3f5-42c9-91f0-823230942bd8) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_cb8e4a1a-901c-469d-b891-00710345d399) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_07b35f8b-3dc2-428c-8ea8-e407d69a2875) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_b31ddae8-7fca-44bc-85ef-018b83ec49ec) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_fdfa3891-b536-4a54-adf3-710f3ce10602) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_68284093-8e68-4d05-9206-ec2f4288fcf9) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_4c0ba6a7-a8f0-417e-b9da-906207429ce6) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_e3f91dc7-4fe2-43b2-8c0d-d9777a059c85) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_568c1005-5178-4c13-8486-18e2c5af4834) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_cbf9ff75-d3ca-48f7-a861-b50d43761669) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_532c7f2d-d97b-416d-b363-b6e10cd8614b) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_778cd5af-fc4a-463a-9f7f-a87e63a0b941) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_5b045842-ece0-4a32-adf2-01f631c51955) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_5fc36d0f-f5f6-4d77-9de1-c071a70c8cd0) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_25d31ce8-5a59-473b-83af-ec5665356e45) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_b88898a9-b403-4b3d-8fcd-1b787bc4d3ba) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_abc0f626-7f51-4267-9962-b75710ae80e5) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_cabfb02b-1256-4619-821f-3936d6053fd5) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_334167a0-0103-4c8b-8a5b-69e178d32833) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:23 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_4c7aa3e4-0dd0-4f69-81b8-3fa978098c17) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_25ec4187-c4c0-4b03-bcd7-dcd7ef505d57) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_8aa68c7b-edb4-4b5b-ab79-9748fdd5547d) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_adf6cc2b-75ac-459c-b482-383e829b3ab0) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_295070dc-4f3a-4597-8250-aa7aba7ca22a) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_bff918fe-1a4a-411c-96aa-eb2222d766de) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_e06056e3-0199-4c68-8ac3-bdddff356a0a) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_364c983a-d176-455c-b1e2-d8a4fd4e89fc) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_71f2bc50-1070-4f73-878a-c0830c099ec7) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_e72ca6ef-b539-4485-aa27-3b65253d9fba) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_0f12c1de-c59a-43d0-a581-4561b627d58a) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_825fed71-66e7-4e09-b5cf-d5a4153335f5) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_cf033ddd-bcb4-4e6a-8b17-c292196f0451) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_620ec575-0508-496f-b17c-f676ee5a377c) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_a18258e0-99c2-42b1-b3e7-d1960fbce904) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_93727531-2699-4b2d-805a-e9741f0e0d37) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_21160242-6971-4452-9797-61afd0dcba89) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 992480 (0xF24E0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_ecd6b494-f8ca-47f4-b1b4-e2455274f605) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 991984 (0xF22F0)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 992608 (0xF2560)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_48859be4-1331-4cd2-8e70-3b537180a0d0) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 992480 (0xF24E0)
    EnumerateUpdates for action (UpdateActionInstall) - Total visible updates = 0 UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 992216 (0xF23D8)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_777b0e18-955a-4022-996b-6862dea4610c) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_4e77d891-084e-440d-95bc-42b26c1f7077) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 992480 (0xF24E0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_862c13b8-72ca-477d-9d14-82c00831e5cd) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:24 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_b1836264-25be-47b7-9aa6-512565051a91) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:25 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_a4da0536-6fb9-4045-87b6-8f3f7582160a) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:25 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_bce497c7-99b2-4427-868e-9126cef33a0b) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:25 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_08cf5cf5-7503-43a3-8cd8-9ee682bf5453) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:25 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_ada7cf51-66b0-4a00-b37b-68d569d6ff8b) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:25 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_f79fe619-c893-43d3-be25-4aaee19135a9) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:25 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_cb374f78-f41c-4425-b558-61e1682b16c7) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:25 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_f82b84c0-16ff-4c30-ad89-b536a2047db3) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:25 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_ad870d88-50b9-4959-82d2-183a78a5531e) to the targeted list UpdatesDeploymentAgent 1/12/2015 12:50:25 PM 991984 (0xF22F0)
    Added update (Site_F625B1D2-59D4-48B2-9ACF-859A9A1276B2/SUM_3c72a908-f3cd-413d-b2bf-ecb68d24b6fe) to the 9CD75536190B}) UpdatesDeploymentAgent 1/12/2015 1:01:31 PM 994004 (0xF2AD4)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 1:01:33 PM 994276 (0xF2BE4)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 1:01:35 PM 993808 (0xF2A10)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 1:01:35 PM 995324 (0xF2FFC)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 1:01:37 PM 994784 (0xF2DE0)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 1:01:37 PM 994040 (0xF2AF8)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 1:01:38 PM 995036 (0xF2EDC)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 1:01:40 PM 995024 (0xF2ED0)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 1:01:55 PM 994752 (0xF2DC0)
    Optional assignment, no advance download needed. UpdatesDeploymentAgent 1/12/2015 1:01:56 PM 994004 (0xF2AD4)

    as per updatedeployment.log it seems that you have targetted non mandatory deployment & it has reached to clients. to see sccm software update icon you need to login into console session (mstsc /console).
    Prashant Patil

Maybe you are looking for

  • Order in a query in SQL Command Processor

    Hi all I'm trying 'HTML DB 1.6' @htmldb.oracle.com. Now when i run a simple query against a table in the 'SQL Command Processor', the order by doesn't work proparly. It seems that the ORDER BY clause is ignored. Here is the query: SELECT ng FROM ges_

  • How Can I Set Page Length in SAPWIN?

    Hi Everybody!. I need your help to set page length in SAPWIN device type!!!... Thanks in advance!...

  • Any way to disable the live map areas in hidden jpgs?

    I have a jpg image that fades from hidden to visible and back via a mouse click toggle behavior tied to a 'click here for map' element (in Dreamweaver CS5, MM_effectAppearFade). I overlaid a map with defined areas on the jpg each of which, when click

  • Should ADT create module components based on views?

    I have a function (representing a report) with Read usage on two entities, and one entity is implemented by a table and the other implemented by a view. When I run the Application Design Transformer, the resulting module has a module component based

  • [nQSError: 46073] Operation 'write()'  Problem

    Hi Experts, System platform is Windows 2008 R2. Often I have reported errors in OBIEE 11.1.1.6.0 when I run the reports as below, and I have found the error messages in  NQSServer.log [nQSError: 46073] Operation 'write()' on file 'E:\OBIEE\Middleware