Dealing with Expired Certs in Mixed-Mode

I have done a fair amount of research on this topic and while I have deployed mixed-mode clusters, I haven't had a situation quite like the one I need to contend with in the next couple of weeks. I am trying to be as prepared as possible and am looking for feedback on some procedures I am drafting.
The situation:
(4) node cluster (clustering over the WAN)
TFTP is enabled on all nodes (that is going to change as a result of our assessment findings)
Cluster is running in mixed-mode
Most certificates on the Publisher node are expired
tomcat cert
ipsec cert
host-name ipsec-trust cert
call manager cert (callmanager.pem)
CAPF cert
CAPF trust cert
One of the subscriber nodes is in the same boat as the Publisher node (they were deployed at the same time and were the first nodes in this cluster)
The other two nodes (in a DR datacenter) have valid certificates  (until 2016) except for the publisher node server cert (which has expired)
The publisher node and the subscriber node that has the expired certs were also installed without DNS being enabled (no domain and no DNS resolvers specified - therefore, I expect that DNS client was not enabled during install)
It is worth noting the following:
Customer enabled mixed-mode because one of the security folks got hot and heavy on encryption. However, they limited the scope to phones only. So, IP Phone to IP Phone == authenticated/encrypted. They have a Unity Connection system with secure ports and that is it. Gateways: no encryption. CCX, etc. == no encryption
During discovery we also found that LSC distribution is fubar. Only a percentage of the phones are using LSC. Likely due to a flaw in the provisioning process. That will be addressed later.
The version they are running is 6.1(3)  (base, no service releases)
The goal: Get the present solution into a VMware environment running CUCM 9.1(2). Planning on doing the Jump Upgrade procedure (interim hop to 6.1.4).
We found out about the certificate issues during our discovery phase. We have built in time to remediate the certificate issue.
The plan (well, thus far). I am still pulling together my notes and trying to come up with a way to test an implementation plan off line so that I can avoid bricking the phones (they are spread all over north america).
Here is the 10,000 foot view of the plan (obviously, the actually plan will be more detailed):
Use BAT to disable phone security and uninstall LSC
Security Profile mod
Certificate Ops
Reset phones
DRS Back up
Download/backup current certs
Configure DNS
set DNS domain name
set DNS resolver (primary and secondary)
Pub node:
regenerate tomcat cert
restart tomcat service
regenerate ipsec.pem
regenerate callmanager.pem
regenerate capf.pem
Sub node (repeat above)
?should we update the Subs not affected by the cert issue?
Run the CTL client and update CTL
Reboot servers
Pub then Subs
Phones will reset as a result of this process
The customer has said that they are actually fine with the idea of going back to square one and start over with provisioning a secured (mixed-mode) cluster after the 9.1 upgrade. That would be great except that if I uninstall LSCs, change phones to non-secure, and use CTL client to change back to standard-mode, I still have the CTLs left on the phones. No way to bulk delete them in UCM. I am considering using something like UnfiedFX to help me get back to square 1. Right now, I consider this a plan B. Unless feedback to this thread and other research suggests a different tact.
Thanks in advance for any assist.
-Bill

Hi William,
You have a quite a few requirements here. Just to clear things up, there are two type of certificates, first is called "certificate trust", and the other is called "Certificate".  For the trust certificates such as Callmanager_trust you can just click on the certificate, make sure that it is expired, and then delete it. this has no impact on the phones. The other type of certificate is called "Certs", you will need to regenerate those certificates, This will regenerate the certificate and also recreates the new "CAPF-trust" or "CallManager-trust" certificates with new date/time ranges.
Doing the above will not impact the phones are the services, however after regenerating the certificates, you will need to restart all the services related to this certificate, for example if you regenerate the tftp certificate, you will need to restart the tftp service on all the servers in the cluster. Same for the Callmanager and the Tomcat.
Please note that whenever you regenerate the Call manager certificate, you will need to run the CTL client with the same Token you used when the server was changed to mixed mode.
In General the below is the procedure to regenerate the certificate
- log into the "Cisco Unified OS Administration" page of the publisher
- choose Security>Certificate Management
- click the link for the expiring certificate
- click "Regenerate"
- restart the service that uses the certificate
That will regenerate the certificate on the publisher. Within the next
10-15 minutes, the updated certificate will  be propagated
to the subscribers.
For more details you could refer to :
http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/cucos/6_1_1/cucos/iptpch6.html#wp1040760
http://www.cisco.com/en/US/prod/collateral/voicesw/direct_upgrade_procedure_for_cisco_unified_communications_manager_releases_6.1_2.pdf
Hope this Helps!
Regards,
Karthik Sivaram

Similar Messages

  • How to deal with expired passwords in authentication schemes?

    IHi,
    I am trying to build an authentication scheme that deals with expired passwords. After the user has provided their valid but expired password they should be redirected to a password reset page. After they have provided a new password they should be allowed to continue to the page they would have otherwise gone to had their password not expired.
    I have written my authentication processs as follows:
    CREATE OR REPLACE FUNCTION inventory_test.inventory_authentication (
    p_username IN VARCHAR2,
    p_password IN VARCHAR2
    RETURN BOOLEAN
    IS
    r1 apex_users%ROWTYPE;
    valid_password BOOLEAN;
    BEGIN
    IF p_password IS NULL
    THEN
    RETURN FALSE;
    END IF;
    SELECT *
    INTO r1
    FROM apex_users
    WHERE UPPER (username) = UPPER (p_username);
    valid_password :=
    DBMS_OBFUSCATION_TOOLKIT.md5 (input_string => p_password
    || TO_CHAR (r1.SEED, '99999')
    ) = r1.PASSWORD;
    IF valid_password AND (r1.password_expiration_date < SYSDATE)
    THEN
    apex_util.set_session_state ('FSP_AFTER_PASSWORD_RESET_URL', v ('FSP_AFTER_LOGIN_URL')); -- My new application item
    apex_util.set_session_state ('FSP_AFTER_LOGIN_URL',
    'F?P=' || v ('APP_ID') || ':14:' || v ('APP_SESSION')
    END IF;
    RETURN valid_password;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    RETURN FALSE;
    END;
    This redirects the user to the password reset page but FSP_AFTER_PASSWORD_RESET_URL is null - presumably because the login process changes the session.
    This seems the wrong approach anyway as the user, once authenticated, can change the page number in the URL and avoid the password reset. I would guess that I need to use the APEX_CUSTOM_AUTH package somehow. However, I am thoroughly confused about the relationship between the LOGIN and POST_LOGIN procedures. Also, I gather from other posts in this forum that there is some asynchronous processing that goes on as new sessions are created. Can someone point me in the right direction please?
    --Tony
    [http://tonyhasler.wordpress.com/][http://tonyhasler.wordpress.com/]

    Sorry for taking so long to acknowledge your helpful suggestions.
    Scott's proposal is a tiny tiny bit awkward as,if i understand it correctly, the user would have to reauthenticate after resetting the password.
    /dev/null's suggestion is actually not too bad for me. I already have each page being authorised and I use only a limited mumber of (once per session) authorization schemes. I think all I have to do is to place an extra line or two in each scheme to check the expiration date of the user's password and remember to call APEX_UTIL.RESET_AUTHORIZATIONS when the password is reset.
    I successfully redirected to the password reset page using owa_util.redirect_url from the post-authentication procedure but what I am still having trouble with is the deep-linking bit. It seems I have to obtain the target URL by 'editing' FSP_AFTER_LOGIN_URL to replace '|' characters by ':' characters and inserting the session id in the right place. Given the fact that FSP_AFTER_LOGIN_URL may not be set and that there may not be sufficient ':' characters in the URL this is very clunky.
    Is there an easier way to do this?
    --- Never mind. I worked out how to use regular expressions with SQL to do this. A full explanation is in my blog.
    --Tony
    http://tonyhasler.wordpress.com
    Edited by: TonyHasler on Sep 6, 2008 3:17 PM

  • How are you dealing with Comptia CEUs? Do it, or let expire?

    Helps, I think most places I think if you have a few years of experience these things kind of become meaningless in many cases it seems. I think the certs are more get your foot in the door or if maybe you're dealing with gov't, etc that may have some mandated need for these. I think at some point the justification of certs lessens.
    In some cases though even experiencecan be useless though (although most prefer it over certs). I knew a person that was in I.T since the 90s, started working on newer systems with SATA, etc, mobile stuff. He would do all kinds of stupid crap took pliers to disconnect SATA cables ripped the connector off HDD, had no idea how user profiles worked so would just delete them to fix outlook, lost people's docs, etc at least once. Eventuallyhe was demoted, they tried to get him to do A+ as refresher, or something...

    I was just looking at this, I took some more specialized security classes this summer. They said this should count for Comptia CEUs. I was kind of always under the impression you just somehow submitted these things, or your experience and something to verify the experience. I looked on the site and it looks like they also want like $50 just for you to add them. Like $300 for the cert, and then you want like $50 a year for CEU fee that seems a bit ridiculous to me.
    If I wasn't looking for a job and had more experience I'd say forget it let it expire. I don't see why people with any real experience level would even bother dealing with this unless some odd reason it was mandatory at work, etc. I honestly think Comptia is kind of shooting themselves in the foot doing this. I suppose if it's something to do with like CEU processing, etc...
    This topic first appeared in the Spiceworks Community

  • Aironet 1140N in mixed mode not working with 802.11b/g Clients

    I have a new Aironet 1140N Access point , the model is number AIR-AP1142N-A-K9, my main problem in that i have Nokia E71 smartphones on the network, but they cannot connect to the Network, the Access Point SSID is not showing on the List of Available Devices if i Scan using the Phone,
    All Laptops are runing Win 7 Pro and they connect quite ok, The phones (8 of them) at HotSpots connects without problems, the Spec says they are compatible with 802.11b/g and the Aironet Access point provides 802.11a/g/n.
    Since the phone has the 802.11g which is compatible with the Access Point, why cant it Pick it? the Access Point is Operating in Mixed Mode.
    Bonnie

    There are basically two "flavors" of WDS that the AirPorts support: static & dynamic.
    o A static WDS allows for a main, relay, and remote base stations in the configuration. This only operates in the 802.11g radio mode. Its advantage is it is well suited when you are trying to cover a considerable linear range ... like a rectangular house where the Internet connection comes in at one of the shorter sides and you want wireless at the other end. The biggest disadvantage of this type of WDS is that for every base station added, you lose half the overall bandwidth.
    o A dynamic WDS allows for only a single main and multiple remotes. Think of a wheel with the main at the center and the remotes as spokes of the wheel. The advantage of this type of WDS is it operates in the 802.11n radio mode and doesn't suffer a significant bandwidth loss like the static version.
    As a minimum, a dynamic WDS requires two 802.11n AirPorts (or Time Capsules). You can create a static WDS with either all 802.11g AirPorts or a mix of 802.11n & 802.11g AirPorts. Note; however, you cannot create a dynamic WDS with mixed mode base stations.

  • CopyRights problem with "expires at the fixed time" uat mode

    Dear all
    I found a problem with rights parameter
    When I use rights parameter in uat mode or umt mode
    it can't be work with this two modes($uat and $umt)
    and I found a document in adobe jp
    the document says "only uat mode works well with expire function"
    so I change the rgihts to uat
    but it still has problem and does not work
    this is part of my ASP VBS code
    startTime=DateDiff ("s","1-Jan-1970",Date())
    endTime=DateDiff ("s","1-Jan-1970",DateAdd("n" , 1 , Now()))
    strQueryParams = oGBLink.AppendToQuery("bookid", pSku, strQueryParams)
    strQueryParams = oGBLink.AppendToQuery("rights", "$uat#"&endTime&"#"&startTime&"$", strQueryParams)
    strQueryParams = oGBLink.AppendToQuery("price", CStr(pPrice), strQueryParams)
    ....and more
    is there any problem with my code??

    I don't see a problem with your code. You might put in a print statement and make sure that strQueryParams contains what you're expecting.
    When you're testing, are you using the same book more than once? If so, ACS can get confused about which voucher to use and use an old one.
    - either use a different book each time
    - or after each test, reset Acrobat or Reader on your test download machine. Adobe has a KB article:
    http://support.adobe.com/devsup/devsup.nsf/docs/53857.htm

  • Hello  i got  problem. iphone doesnt restore  even using itunes.its stuck in recovery mode and i cannt do anything with it.error 1015  is there any way to reinstall software even if itunes cannot deal with it ?

    hello  i got  problem. iphone doesnt restore  even using itunes.its stuck in recovery mode and i cannt do anything with it.error 1015  is there any way to reinstall software even if itunes cannot deal with it ?

    Usually this error occurs when trying to downgrade the iOS or in a previously jailbroken phone.  In this case, you cannot get help here.  The internet and Google are your best friends.

  • Historical Reports on CCX 7.01sr5 with "mixed Mode" on db

    Hej.
    In the release note from CCX 7.01sr5 is one of the changes the the database is supported with mixed mode on the security.
    I have set that up, but when i try to run the Historical Reporting Tool, it says that Mixed mode on the DB is not supported.
    Does anyone have a work around for this
    Regards
    Thomas

    Hi
    Yep - it's also in the release notes as far as I remember.
    See this similar post : https://supportforums.cisco.com/message/3053064#3053064
    Aaron
    Please rate helpful posts...

  • K9VGM-V Problem with RAM mixed mode

    Hi,
    I am having K9VGM -V motherboard. I was operating it in single mixed mode with a 512 Mb DDR2 533MHz + 1G DDR2 663Mhz, with BIOS version 1.0. I upgraded my CPU to Athlon X2 4000+. For this I had to upgrade my BIOS to version 1.8. After this upgrade I am not able to use both RAM modules simultaneously. Its giving continuous beep sound if I try to start computer when both RAMs are in.
    System is working like charm when operating in only one RAM. But I don't want to waste the other RAM module. Can some one please help me, if there is some setting I need to do to use both of my RAMs together.

    Don't open new topic for the same subject:
    https://forum-en.msi.com/index.php?topic=117891.0

  • Best practice dealing with mixed footage types

    I will soon embark on my first proper FCP project. The film will be shot at the end of the week on a Sony PMW-EX1 in 1080p25. We already shot some footage a few weeks ago, alas this was mistakenly shot interlaced 1080i50. What would be the best way to go about combining these two sets of footage? Should I de-interlace the 1080i50 stuff first or just drop it all into the timeline and allow FCP to deal with it?

    OK, I found a better solution.Future<String> errString = executorService.submit(
        new Callable<String>() {
            public String call() throws Exception {
                StringWriter errWriter = new StringWriter();
                IOUtil.copy(process.getErrorStream(), errWriter, "UTF-8");
                return errWriter.toString();
    int exitValue = process.waitFor();
    getLog().info("exitValue = " + exitValue);
    try {
        getLog().info("errString =\n" + errString.get());
    } catch (ExecutionException e) {
        throw new MojoExecutionException("proxygen: ExecutionException");
    } The problem I was having before seemed to be that the call to Apache's IOUtil.copy(errorStream, errWriter, "UTF-8"); was not working right, it did not seem to be terminating on EOS. But now it seems to be working fine, so I must have been chasing some other problem (or non-problem).
    So, it does seem the best thing to do is read the error and output streams from the process on their own daemon threads, and then call process.waitFor(). The ExecutorService API makes this easy, and using a Callable to return a future value does the right thing. Also, Callable is a little nicer as the call method can throw an Exception, so my code does not need to worry about that (and the readability is better).
    Thanks for helping to clarify my thoughts and finding a good solution :-)
    Now, it would be really nice if the Process API had a method like process.getFutureErrorString() which does what my code does.
    Cheers, Eric

  • JNI to access functions of a dll to deal with a data aquision pci card

    i am trying to do an applicattion to access the functions of a dll
    to deal with a data aquision pci card (Analogig/Digital pci card).
    i�m using jni of course, but i have some problems.
    first i did a class called "TesteDll" witch contains all the native methods to access the functions of the pci card.
    after, i did a "TesteDll.jar" to use these methods in another applicattions.
    everything was fine until there. so created a single program like this:
    TesteDll td = new TesteDll();
    short res1 = td.P1602_DriverInit(wTotalBoards);
    short r = td.P1602_ActiveBoard((short)0); // ativa a placa
    short res2 = td.P1602_GetConfigAddressSpace((short)0,wAddrTimer,wAddrCtrl,wAddrDio,wAddrAdda);
    int dwRepeat;
    for(dwRepeat=0 ; dwRepeat<100 ; dwRepeat++)
    short wRetVal;
    wRetVal = td.P1602_ClearScan();
    wRetVal += td.P1602_AddToScan((short)0,(short)0,(short)1,(short)0,(short)0,(short)0);     // CH:0 to scan
    wRetVal += td.P1602_SaveScan((short)0,wV0);
    wRetVal += td.P1602_AddToScan((short)2,(short)0,(short)1,(short)0,(short)0,(short)0);     // CH:2 to scan
    /* ->error here!*/ wRetVal += td.P1602_SaveScan((short)1,wV2);      
    the programs compile correctly, but in the execution the folowing error was descripted:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x8079A50
    Function=[Unknown.]
    Library=(N/A)
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    at TesteDll.P1602_SaveScan(Native Method)
    at Teste2.main(Teste2.java:119)
    Dynamic libraries:
    0x7CD80000 - 0x7CD9D000      C:\WINDOWS\SYSTEM\IMAGEHLP.DLL
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 161K [0x10010000, 0x100b0000, 0x104f0000)
    eden space 512K, 31% used [0x10010000, 0x100385c0, 0x10090000)
    from space 64K, 0% used [0x10090000, 0x10090000, 0x100a0000)
    to space 64K, 0% used [0x100a0000, 0x100a0000, 0x100b0000)
    tenured generation total 1408K, used 0K [0x104f0000, 0x10650000, 0x14010000)
    the space 1408K, 0% used [0x104f0000, 0x104f0000, 0x104f0200, 0x10650000)
    compacting perm gen total 4096K, used 1044K [0x14010000, 0x14410000, 0x18010000)
    the space 4096K, 25% used [0x14010000, 0x141152e8, 0x14115400, 0x14410000)
    Local Time = Wed Jun 01 10:21:14 2005
    Elapsed Time = 0
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_06-b03 mixed mode)
    functions like "P1602_DriverInit(wTotalBoards)","P1602_ActiveBoard((short)0)" functions correctly.
    i run the same program in c++ builder and everythings goes fine, but i need to do it in java. i don�t know what to do,can you help me?
    thanks

    i almost forgot, i�m using win 98.
    First i used Dev C++ to make the JNI dll and the error ocurred at the first call of "P1602_AddToScan()" function. after i made the jni dll using C++ Builder, and the error ocurred at the second call of "P1602_SaveScan()" function. but the error message in both cases was the same.
    for(dwRepeat=0 ; dwRepeat<100 ; dwRepeat++)
    short wRetVal;
    wRetVal = td.P1602_ClearScan();
    /*First Error - Dev C++*/ wRetVal += td.P1602_AddToScan((short)0,(short)0,(short)1,(short)0,(short)0,(short)0); // CH:0 to scan
    wRetVal += td.P1602_SaveScan((short)0,wV0);
    wRetVal += td.P1602_AddToScan((short)2,(short)0,(short)1,(short)0,(short)0,(short)0); // CH:2 to scan
    /* Second error C++ Builder */ wRetVal += td.P1602_SaveScan((short)1,wV2);
    ...

  • Two Apple ID's: Dealing With It

    Here's a means to deal with the 2 Apple ID problem. It's not necessarily a solution; it's a message to Apple.
    Background: The old MobileMe, iTunes, and iCloud accounts do not get along. This is because iTunes used one Apple ID for purchases, and MobileMe another, which was always the @me.com or @mac.com email address.
    Along comes iCloud and it insists that the @me.com adress is its own Apple ID, and al devices and iCloud apps or content services must and can only sync to a device running that account. This does not mean you cannot use your content from the old iTunes Apple ID on your device if it is authorized, but many push, sunc, in-App opurchases, or auto-update featreus cannot work unless you make the effort to log-out of your iCloud Apple ID and log-in to iTunes with your iTunes Apple ID.
    This 2 Apple ID confusion is maddening. Originally .Mac/MobileMe were Mac-only service with no relationship to iTunes. Since iTunes was a broad service extending into the world of PC's and Windows, it did not tie its accounts (Apple ID's) to a specific Apple-generated email address. this is probably why @mac.com was replace with the less Macentric @me.com.
    Here's a way to get the message to Apple that this transition is creating all sorts of problems for those with older iTunes and .Mac/MobileMe Apple ID's:
    Using iTunes, log in to the Apple ID you DO NOT WANT in the future. This will be the Apple ID with the email address different than the one you use for iCloud. Duoble-check.
    If you do not have an iTunes account with your iCloud name then you are safe and free to make one that is identical. Stop reading any further.
    Once you've logged into your iTunes account (which is just the account attached to your Apple ID), go to Purchase History.
    Identify all purchases in an invoice (each sepaarte line item is an invoice) and click Report a Problem.
    Always choose the LAST item in the pulldown menu. This is the catch-all, generic problem.
    Type in (or modify as you see fit), then click Done. Repeat for every paid item:
    This item downloaded to the wrong account. For syncing with iCloud I need it to be on my iCloud account which is Apple ID [email protected]. Thank-you.
    I did this on a trial basis and recieved a transfer. I have now reported all 400 paid items from my non-iCloud account witht the above request. It took a bit of time, but I feel it may achieve what I require.
    It only works with paid items: apps or media content. Anything free or an in-app purchase does not work and will bump you to a webpage. For free items find your email invoices and print those, then re-download them again.
    But here's the catch. Apple has to respond to every one of those requests. If an app costs $0.99 then Apple takes $0.33. responding to every "Report a Problem". For every $0.99 app will use more labor costs than the app made for Apple. Same for songs.
    Apple offers great products and services, but this ping-pong game with .Mac, MobileMe, iTunes, and now iCloud is a major problem because it diminsishes the capabilities of our invested hardware when we cannot sync across Apple ID's. The most loyal Apple customers were those early adopters who, like myself, find we cannot utilize all our apps and content because we cannot combine Apple ID's.
    This method may not work or work for everyone, but it sends a message that there ineed is a "Problem", triggered by iCloud's implementation.

    Some things are mixed up here, seemingly...
    I seem to have two Apple ID's attached to my e-mail.
    An Apple ID is a valid email address, apparently. How can those be "attached to your email"... what email?
    Facetime will not verify my e-mail address because it is associated with the other account.
    This doesn't make sense. You can register multiple, even non-Apple-ID, email addresses and their aliases with FaceTime.
    So, maybe you can explain your problem better - what you want and the steps you've taken and what you have so far. If something doesn't work, please tell the exact error message, too.

  • Zen Vision M Firmware Problem!!! Can't deal with this thing any more...

    Can't deal with this thing any more...3 Hello friends I'm new in the forum
    Well as the title mentions, I'm about to throw this thing oute of the window!!!
    It's a 30 GB Zen Vision M, I own it ,5 years now...
    I have read all the relevant posts in the forum about this player, I tried my best, nothing really worked.....
    So now I have a Zen which only boots in the recovery mode!!
    I have Cleaned it Up, Formated it, and tried to reload its firmware BUT when I connect it and try to reload it, in the end it always says Firmware Upgrade Failed!!Really can't understand it!!!!!
    I've communicated with Creative, i wasn't at all satisfied with their responses... I think what they're trying to do is to avoid me, and earn some time with really useless suggestions which I had already told them won't work!!!So in the end they wanted me to send my Zen in Italy and pay more than 100 Euros for what an ,5 year old mp3 player?No I prefer buying a new Cowon with that amount of money!!!
    Anyways I'm pretty mad now, so I'll move to the subject..
    I have Service Pack 3 Windows XP in my computer, and I did roll back on the Media Player 0 from the I had, using the instructions from a previous post. The truth is that it rolled back with less steps than it showed, and I say that because it mentions in a step that in the add-remove programms, in the Windows XP-Software Updates section, I should find a Windows Media player thing which really doesnt exist and I suspect it's the Service Pack 3 because I have done the same in a SP2 and worked exactly as the steps said..Anyway the fact is I have Windows Media Player 0 now!!!
    Please someone tell why can't I upgrade my firmware... I can't deal with this anymore!!!!

    KRe: Zen Vision M Firmware Problem!!! Can't deal with this thing any more..._
    menios wrote:
    So you say that I actually have the Windows Media Player 0, because my Zen is being recognised..
    I have rebooted it several times but its just the same thing...it shows firmware problem!!
    Why isn't this player working?I've seen many people, not only from here, who have the same exact problem and they gave up on their mp3... I dont have this kind of luxury to buy a new one!!I don't know whether Creative has put on this a "time bomb" or is just faulty, but I really wish it could be saved..
    I'm saying it is WMP0 because the firmware file sees the player. The computer can recognize it but with WMP components that firmware file would be grayed-out..So when you reloaded the firmware did you choose "reload firmware" Before you connected it's?(That is what erases the firmware prior to uploading the firmware. If you did not do that it could cause it to fail.Do these ste
    ps.
    Open the firmware file,On the player format>cleanup>choose reload firmware, then connect & run the firmware file.

  • How to deal with OpenCL grey out issue.

    First off, I'm not native english speaker.
    I have Nvidia GeForce 550 Ti video card, and its support OpenCL v1.1.
    I'm also face a "random" OpenCL grey out issue like other people here, but I found the "issue" and how to deal with.
    open a command windows (using WinKey + R, and type cmd <enter>)
    type "cd C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)" <enter>
    type "sniffer_gpu" <enter>  -->> to check your GPU has OpenCL in Photoshop?
    When GPU is in power-saving mode (core running in 51Mhz, using MSI Afterburner monitor), I running sniffer_gpu, got this report
    C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)>sniffer_gpu
    Device: 0000000000328D68 has video RAM(MB): 1023
    Vendor string:    NVIDIA Corporation
    Renderer string:  GeForce GTX 550 Ti/PCIe/SSE2
    Version string:   3.0.0
    OpenGL version as determined by Extensionator...
    OpenGL Version 3.0
    Has NPOT support: TRUE
    Has Framebuffer Object Extension support: TRUE
    OpenGL ok
    Return code: 1
    C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)>
    No OpenCL support
    Then, I switch GPU back to normal status (core running at 900Mhz)
    C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)>sniffer_gpu
    Device: 00000000001F8D68 has video RAM(MB): 1023
    Vendor string:    NVIDIA Corporation
    Renderer string:  GeForce GTX 550 Ti/PCIe/SSE2
    Version string:   3.0.0
    OpenGL version as determined by Extensionator...
    OpenGL Version 3.0
    Has NPOT support: TRUE
    Has Framebuffer Object Extension support: TRUE
    OpenGL ok
    OpenCL ok, version=1.1 CUDA 4.2.1
    Return code: 3
    C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)>
    OpenCL support !!
    Nowadays, most of new GPUs were support power-saving, but when sniffer_gpu running at GPU power-saving state, the OpenCL computing report maybe "time-out", cause the detector "guess" the GPU does not support OpenCL. This is why many people says "OpenCL" sometimes work, sometimes grey-out.
    I hope this bug can be fixed, or at least people can understand how to "enable OpenCL everytime when you launch photoshop".
    Bye.

    Do check the following link
    http://blogs.oracle.com/soabpm/2010/01/soa_suite_11g_weblogictransact.html

  • How to deal with the "Set-Cookie" field in HTTP header??

    I follow the RFC-2616 specification to write a socket program to fetch web pages.
    I have to deal with all the fields included in the HTTP header.
    But the RFC-2616 doesn't talk anything about the "Set-Cookie" field.
    Does anyone know how to handle this field or provide me any useful documentation.
    Any help is appreciated.

    A cookie is set with the "Set-Cookie: "-field in the http header, like this:
    Set-Cookie: mycookie=someValue
    This cookie should only be returned to the same host as it came from, like this in the http header of a request:
    Cookie: mycookie=someValue
    If the parameter looks like this:
    Set-Cookie: mycookie=someValue; path=/cgi-bin
    , the cookie should only be returned to the host if the request path starts with /cgi-bin
    If the parameter looks liek this:
    Set-Cookie: mycookie=someValue; domain=.mydomain.com
    , the cooke should be returned to all hosts in the .mydomain.com-domain
    There is also a "expires="-field, which works as expected and a "secure"-field, which I'm not sure how to handle. Maybe the cookie should only be sent to an SSL-enabled host?
    Hope this helps you. Bye,
    Dag W.

  • 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