Failure of client/producer

Hello

I'm working on a project for several months and I am in the final stage of the project. However, when I want to use my program it gives me several problems. Let me first clarify what is the main program:

  • The machine works has 5 sensors and 4 motors
  • The main program consists of 8 while loops:
  1. [Loop DAQ] acquires 5 voltage sensor-> filters these (compression of the sample - medium)-> place in a queue which can be reached by the second loop
  2. [Loop visualization] remove measurement data of the first loop-> does some calculations and displays them in different sets of graphs (located in different tabs of the front panel)-> puts the original data of the measure in a second queue for the third loop.
  3. [Storage/calculation loop] removes the second loop data and stores the calculated values you want in a txt file
  4. [Engine control loop] controls a single engine. He listens to the "channel of Communication" (declaring between two loops of motor control). If it receives 'Engine start', he starts (or continues) the internal structures of cases. If it receives the "Motor Stop" command, the motor ceases all activities. He listens to the channel "Average" (notification of the loop data acquisition with a mean value) to get the last average. If it matches up to the desired gap, her continuous loop with an iteration through the different shear rate. "If it does not, it sends a command to the second loop engine to ' go to gap = xx.xx" (on the "channel of Communication"). In the latter case it later to wait for an order of new 'engine Start '.
  5. [Picomotor control loop] controls the second engine. He listens to the "channel of Communication". "If he receives ' go to gap = xx.xx" (with x a float), we read this floating number as a new spread of the target and put it in a register shift. If it receives the "Motor Stop" command, then the picomotor ceases all activities. He listens to the 'Average' channel to get the last average. Once this value is stabilized loop of picomotor enters the case structures. The difference between the target and the average deficit is used to calculate a step for the picomotor size. Once this step is zero, the loop of picomotor sends a notification to the "channel of Communication" to "engine start". He also listens to the string 'Stop order' to a stop command.
  6. 6/7/8 loops are event listener loops

Tags: NI Software

Similar Questions

  • AnyConnect VPN log in failure

    Today, we had a very disturbing failure.  We have a private network fully functional virtual on our device of Adaptive Security ASA 5510 8.2 (5) running.  I was installing a new user on a computer of Windows 7 Professional 64 bit using FireFox instead of Internet Explorer.

    The initial connection has worked well, but the client download has failed.  I clicked on the link to download the client manually and the Cisco VPN client appeared to download and install correctly.  However, when I tried to open the VPN after installed customer he says again once the automatic download of the client failed and he offered the link to download the client once again, that I made with exactly the same result.

    I thought that perhaps the problem was with FireFox so I opened Internet Explorer and enter the url for the VPN.  After that the user name and password entered (and validated), I got the same error on the failure of client download and I selected the link for download it manually like I did the other 3 times in FireFox.  This time, it seemed indeed that it worked as I received the certificate on AnyConnect error (which I normally receive it) However, the login screen remained on the page after I clicked on the certificate error to continue.

    The PC seems to hang so I finished the VPN session and then attempted to re-establish the connection.  This time when I entered the username and password, it came up saying "opening session not valid."  I tried again and got the same result.  I tried another user but no joy... same result... is not a valid connection.  I went to another PC; that worked fine a few minutes earlier and I got the same invalid login message any user name and password I entered.  Something happened that was blocking all users to connect to the VPN.

    I didn't believe that attempts to connect to the VPN using FireFox on a Windows 7 64 bit machine could sort my Cisco VPN fall but I was out of options... so I restarted the ASA and much to my reboot disappoinment has completely restored the VPN service.

    Now, if it was a router LinkSys of 75 million dollars instead of a safety device several thousand dollars I just shake, but how can it be that a failed connection attempt could put a Cisco ASA 5510 VPN kneeling?  I thought maybe I had grown the max license for SSL VPN connections... I think its 2... But if it was the case then why don't the message indicates that instead of just saying 'invalid connection '.  Also, there is no other opening connectionsat the time unless all downlaod failure attempts counted as active sessions.  Also, I had already checked in ASDM and no active VPN sessions have been recorded.

    Any guidance someone can provide would be greatly appreciated.

    Ed

    Hi Edward,.

    I went through the issue and I think you have only 2 license for SSL and when you try to login several times, nomatter if the installation completed successfully, or it has failed but the sessions have been built on the SAA and after the construction of the session, ASA pushed these files on client computers. I know that it gives you a message beside the point, saying: 'Invalid logon', but if you run the debug web svc 255 on the SAA (using SSH/Telnet), you will see a message:

    Session could not be established. Session limit 2 reached

    .

    You say that you don't see any session on the SAA, so could you please get the output of the command:

    debugging web anyconnect 255 (or debug web svc 255) and share with us.

    Thank you

    Vishnu Sharma

  • Circle quick algorithm (Bresenham?) drawing to transform circular Hough

    I worked on a circular Hough transformation algorithm for circle detection and I am interested in finding ways to make a little more efficient. At high level, I implement some queueing of client/producer model between the data collection and analysis/filtering, but I think that the circle of operation for the accumulation of Hough of drawing could use some breaking in. That's where I'd love help from you, the experienced programmers of LabVIEW.

    I used simple trigonometry draw pixels with some angular resolution, but I think using a circle drawing algorithm as the algorithm of circle in the middle (variation of Bresenham circle) is probably smarter in the end. The abomination of hidious of LabVIEW script I created for her, however, is not complete as quickly as I had hoped. I followed the C code written here: http://members.chello.at/~easyfilter/bresenham.html

    You can find the attached VI. It takes in a matrix of pixels in an image binary (0 to 255), with the edges and draw circles centered on each pixel 255 with the given radius. "Drawn" circles are simply a list of coordinates, the output array. Anyone have any suggestions on how to improve this VI? Or maybe even some input to the notion of transformation of Hough set?

    Hi Vekkuli!

    I have, but a few recommendations for this function. Mind you, this is just my point of view, there could be more advantageous alternatives.

    1. For the calculation of the pixel when you used the formula nodes. I think it's a little overdosed because it's only in addition/subtraction, so you can just do that in LabVIEW.
    2. When collecting the coordinates, try to avoid using registers at offset and table build to add new items in each iteration. Because arrays are dynamic data types, this causes the compiler to allocate a new, bigger memory, copy the entire table with the new elements, and then free the old memory. Do what each iteration is quite a Devourer of performance. A better approach would be to use indexing or concatenation of tunnels.
    3. Borrowing tunnels of indexing to collect data also added, advantage to the outer loop (the iterate over all pixels) paralellizable, which could be a big performance increase, assuming a multi-core PC.
    4. You can get a possible increase in speed by drawing octants instead of quadrants, creating 8 points at each iteration.

    I also tried my hand to implement this algorithm that creates a circle, here is the result:

    On the transformation of Hough, there are examples of LabVIEW implementation, made at the University of Texas. You will find them here.

    I hope this helps.

    Kind regards:

    Andrew Valko

    NOR Hungary

  • Windows Vista 64 not updated since September 2009! Error. 80070424

    Recently, the research on different forums on the web that this one to try to solve the problem. Can't say I've found a lot of useful information. I tried a number of things like turn off some windows services, a windows program fixit and something to do with the BITS or something and nothing seems to work. I even tried to find the files needed to install manually and no chance and whenever I think I find a link on this maze of a Web site that looks like it could hold the key need you for this page which shows you just a picture of the start menu and the cursor during the update of windows. Not frickin useful! Just see a link to the left of the screen here leading to a thread with someone who has a similar problem and the adviser said he had to see the last 50 lines of the windowsupdate log to know what he is treated so here is mine.

    2010-02-16 22:54:06:816 400 a3c to THE # START # to THE: research updates
    2010-02-16 22:54:06:816 400 a3c to THE #.
    2010-02-16 22:54:06:879 400 AU a3c<## submitted="" ##="" au:="" search="" for="" updates="" [callid="">
    2010-02-16 22:54:06:879 400 70 c Agent *.
    2010-02-16 22:54:06:879 400 70 c Agent * START * Agent: finding updates [CallerId = AutomaticUpdates]
    2010-02-16 22:54:06:879 400 70 c Agent *.
    2010-02-16 22:54:06:879 400 70 c Agent * Online = Yes; Ignore download priority = No
    2010-02-16 22:54:06:879 400 70 c Agent * criteria = "IsInstalled = 0 and DeploymentAction = 'Installation' or IsPresent = 1 and DeploymentAction = 'Uninstall' or IsInstalled = 1 and 'Installation' and = 1 RebootRequired = DeploymentAction or IsInstalled = 0 and DeploymentAction = 'Uninstall' and RebootRequired = 1".
    2010-02-16 22:54:06:879 400 70 c Agent * ServiceID = {7971F918-A847-4430-9279-4A52D1EFE18D} third service
    2010-02-16 22:54:06:879 400 70 c Agent * scope of search = {Machine}
    2010-02-16 22:54:06:910 400 70 c Misc validation signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2010-02-16 22:54:06:910 400 70 HP. Misc Microsoft signed: Yes
    2010-02-16 22:54:07:019 400 70 c Misc validation signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2010-02-16 22:54:07:019 400 70 HP. Misc Microsoft signed: Yes
    2010-02-16 22:54:07:035 70 400 c Agent looking for updates auth cab for 7971f918-a847-4430-9279-4a52d1efe18d to http://download.windowsupdate.com/v9/microsoftupdate/redir/muauth.cab service
    2010-02-16 22:54:07:035 400 70 c Misc validation signature for C:\Windows\SoftwareDistribution\AuthCabs\authcab.cab:
    2010-02-16 22:54:07:035 400 70 HP. Misc Microsoft signed: Yes
    2010-02-16 22:54:07:144 400 70 c Misc validation signature for C:\Windows\SoftwareDistribution\AuthCabs\authcab.cab:
    2010-02-16 22:54:07:144 400 70 HP. Misc Microsoft signed: Yes
    2010-02-16 22:54:07:144 400 70 c installation verification agent SelfUpdate
    2010-02-16 22:54:07:144 400 70 c version of configuration Client: Core: 7.4.7600.226 to the: 7.4.7600.226
    2010-02-16 22:54:07:144 400 70 c Misc validation signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2010-02-16 22:54:07:159 400 70 HP. Misc Microsoft signed: Yes
    2010-02-16 22:54:07:284 400 70 c Misc validation signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2010-02-16 22:54:07:284 400 70 HP. Misc Microsoft signed: Yes
    2010-02-16 22:54:07:284 400 70 c Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2010-02-16 22:54:07:284 400 70 HP. Misc Microsoft signed: Yes
    2010-02-16 22:54:07:409 400 70 c Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2010-02-16 22:54:07:409 400 70 HP. Misc Microsoft signed: Yes
    2010-02-16 22:54:07:425 400 70 c Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2010-02-16 22:54:07:425 400 70 HP. Misc Microsoft signed: Yes
    2010-02-16 22:54:07:534 400 70 c Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2010-02-16 22:54:07:534 400 70 HP. Misc Microsoft signed: Yes
    2010-02-16 22:54:07:596 70 400 c Setup determine whether a new configuration manager should be downloaded
    2010-02-16 22:54:07:596 400 70 c Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\Handler\WuSetupV.exe:
    2010-02-16 22:54:07:596 400 70 HP. Misc Microsoft signed: Yes
    2010-02-16 22:54:07:596 70 400 c Setup Manager SelfUpdate unnecessary update: current version: 7.4.7600.226, required version: 7.4.7600.226
    2010-02-16 70 c of the 22:54:07:596 400 applicability evaluation setup of the installation package ' ActiveX-SelfUpdate-WUClient ~ 31bf3856ad364e35 ~ amd64 ~ ~ 7.4.7600.226;
    2010-02-16 22:54:07:596 70 400 c installation caveat: Cbs StartSession, error = 0 x 80070424
    2010-02-16 400 70 c Setup FATAL 22:54:07:596: evaluation of the applicability for installation package "WUClient-SelfUpdate-ActiveX ~ 31bf3856ad364e35 ~ amd64 ~ ~ 7.4.7600.226 ' has failed, error = 0 x 80070424
    2010-02-16 22:54:07:596 400 70 c Setup FATAL: SelfUpdate check failed, err = 0 x 80070424
    2010-02-16 22:54:07:596 400 70 c Agent * WARNING: jump scan, automatic update control returned 0 x 80070424
    2010-02-16 22:54:07:596 400 70 c Agent * WARNING: exit code = 0 x 80070424
    2010-02-16 22:54:07:596 400 70 c Agent *.
    2010-02-16 22:54:07:596 400 70 c Agent * END * Agent: finding updates [CallerId = AutomaticUpdates]
    2010-02-16 22:54:07:596 400 70 c Agent *.
    2010-02-16 22:54:07:596 400 70 c Agent WARNING: customer WU didn't search for the update with error 0 x 80070424
    2010-02-16 22:54:07:596 400 4e0 to THE > # RETURN # to THE: research updates [CallId = {76AF99BB-3F70-46E8-9180-7E0BD7D54F23}]
    2010-02-16 22:54:07:596 400 70 c report REPORT EVENT: 2010-02-16 22:54:02:916 - 0000 1 148 101 {605140C6-47FB-48CB-B322-CFED0EA56312} {61CA813A-7585-442E-A66B-B0D15CE6BDC0} 1 80070424 SelfUpdate software failure synchronization Client Windows Update not found with error 0 x 80070424.
    2010-02-16 22:54:07:596 400 4e0 to # WARNING: reminder of search failed, result = 0 x 80070424
    2010-02-16 22:54:07:596 400 4e0 to # WARNING: could not find updates with error code 80070424
    2010-02-16 22:54:07:596 400 4e0 to THE #.
    2010-02-16 22:54:07:596 400 70 c report REPORT EVENT: 2010-02-16 22:54:05:896 - 0000 1 148 101 {747E212B-AF9E-4590-899F-3F645F7FBF9F} {61CA813A-7585-442E-A66B-B0D15CE6BDC0} 1 80070424 SelfUpdate software failure synchronization Client Windows Update not found with error 0 x 80070424.
    2010-02-16 22:54:07:596 400 4e0 to # END # in THE: research updates [CallId = {76AF99BB-3F70-46E8-9180-7E0BD7D54F23}]
    2010-02-16 22:54:07:596 400 4e0 to THE #.
    2010-02-16 22:54:07:596 400 70 c report REPORT EVENT: 2010-02-16 22:54:07:596 - 0000 1 148 101 {A4191F06-328C-4445-855C-10E80B9BB678} {61CA813A-7585-442E-A66B-B0D15CE6BDC0} 1 80070424 SelfUpdate software failure synchronization Client Windows Update not found with error 0 x 80070424.
    2010-02-16 22:54:07:596 400 4e0 to THE timeout parameter next detection at 2010-02-17 03:54:07
    2010-02-16 22:54:07:596 400 4e0 phase of installation to THE adjustment to THE planned for 2010-02-17 03:00
    2010-02-16 22:54:07:612 70 400 c report CWERReporter::HandleEvents - WER report upload completed with status 0 x 8
    2010-02-16 22:54:07:612 400 70 c report WER report sent: 7.4.7600.226 0 x 80070424 61CA813A-7585-442E-A66B-B0D15CE6BDC0 Scan 101 unmanaged
    2010-02-16 22:54:07:627 70 400 c report CWERReporter::HandleEvents - WER report upload completed with status 0 x 8
    2010-02-16 22:54:07:627 400 70 c report WER report sent: 7.4.7600.226 0 x 80070424 61CA813A-7585-442E-A66B-B0D15CE6BDC0 Scan 101 unmanaged
    2010-02-16 22:54:07:643 70 400 c report CWERReporter::HandleEvents - WER report upload completed with status 0 x 8
    2010-02-16 22:54:07:643 400 70 c report WER report sent: 7.4.7600.226 0 x 80070424 61CA813A-7585-442E-A66B-B0D15CE6BDC0 Scan 101 unmanaged
    2010-02-16 22:54:07:643 400 70 c report CWERReporter finish event management. (00000000)

    See...

    Help: I got hacked. Now what should I do?
         http://TechNet.Microsoft.com/en-us/library/cc700813.aspx

    Personal data backup (which none should be considered 100% reliable at this point) then format the HARD disk and do a clean install of Windows.  Please note that a repair installation (upgrade AKA on-site) won't fix this!

    HOW to do a clean install of Vista: section "If you want to reinstall Windows Vista by running a new installation...". "of http://windows.microsoft.com/en-us/windows-vista/Installing-and-reinstalling-Windows-Vista#section_3

    Once installed the clean, you will have the equivalent of a "new computer" in order to take care of everything on the next page before connecting the machine to the internet or one local network (i.e. other computers) otherwise and before using a flash drive or the SD card that is not brand new, or has not been freshly formatted:

    4 steps to help protect your new computer before going online
         http://www.Microsoft.com/security/pypc.aspx

    NB: No matter what Norton or McAfee free trial which is preinstalled on the computer when you bought will be reinstalled (but invalid) when Windows is reinstalled. You MUST uninstall the trial for free and download/run the removal tool before installing updates, Windows Service Packs, or updates IE and before installing your new anti-virus application (which will require WinXP SP3 must be installed).

    Norton Removal Tool
         FTP://ftp.Symantec.com/public/english_us_canada/removal_tools/Norton_Removal_Tool.exe

    McAfee Consumer product removal tool
         http://download.McAfee.com/Products/Licensed/cust_support_patches/MCPR.exe

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • I get the dreaded 80080005 error during the update of windows.

    Here's what's in windowsupdate.log:

    2009-12-27 20:59:41:783 1068 1410 Misc = logging initialized (build: 7.4.7600.226, tz:-0500) =.
    2009-12-27 20:59:41:783 1068 1410 Misc = process: C:\Windows\system32\svchost.exe
    2009-12-27 20:59:41:783 1068 1410 Misc = Module: c:\windows\system32\wuaueng.dll
    2009-12-27 20:59:41:783 1068 1410 Service *.
    2009-12-27 20:59:41:783 1068 1410 Service * START * Service: Service startup
    2009-12-27 20:59:41:783 1068 1410 Service *.
    2009-12-27 20:59:41:814 1068 1410 Agent * WU version 7.4.7600.226 customer
    2009-12-27 20:59:41:814 1068 1410 Agent * Base Directory: C:\Windows\SoftwareDistribution
    2009-12-27 20:59:41:814 1068 1410 Agent * access type: no proxy
    2009-12-27 20:59:41:845 1068 1410 Agent * network state: connected
    2009-12-27 20:59:44:232 1068 1410 DtaStor default service AU is {00000000-0000-0000-0000-000000000000}
    2009-12-27 20:59:44:279 1068 1410 DtaStor default service AU is {9482F4B4-E343-43B6-B170-9A65BC822C77}
    2009-12-27 20:59:44:279 1068 1410 Agent WARNING: cannot read the re-registration service id 0 x 80070002
    2009-12-27 20:59:44:279 1068 1410 Agent WARNING: entered service in the backup data store; cleaning of
    2009-12-27 21:00:29:472 1068 1410 report CWERReporter::Init succeeded
    2009-12-27 21:00:29:472 1068 1410 Agent * Agent: initialization of Windows Update Agent *.
    2009-12-27 21:00:29:488 1068 1410 Agent * Agent: initialization of the global parameters cache *.
    2009-12-27 21:00:29:488 1068 1410 Agent * WSUS server:
    2009-12-27 21:00:29:488 1068 1410 Agent * state WSUS server:
    2009-12-27 21:00:29:488 1068 1410 Agent * target group: (Unassigned Computers)
    2009-12-27 21:00:29:488 1068 1410 Agent * Windows Update access disabled: No.
    2009-12-27 21:00:29:488 1068 1410 DnldMgr Download manager restoring 0 downloads
    2009-12-27 21:00:29:488 1068 1410 in THE # to THE: initialization of automatic updates.
    2009-12-27 21:00:29:503 1068 1410 in THE # to THE disabled through the user preference
    2009-12-27 21:00:29:503 1068 1410 in THE # will interact with non-admins (Non-admins are high (user preference))
    2009-12-27 21:00:29:503 1068 1410 AU initialization featured updates
    2009-12-27 21:00:29:503 1068 1410 in THE Found set 0 cached updates featured
    2009-12-27 21:00:29:503 1068 1410 only to THE delayed finish to initialize
    2009-12-27 21:00:30:299 1068 1410 report * report: initialization of static data to report *.
    2009-12-27 21:00:30:299 1068 1410 report * OS Version = 6.0.6002.2.0.66304
    2009-12-27 21:00:30:299 1068 1410 report * OS Product Type = 0x00000002
    2009-12-27 21:00:30:455 1068 1410 report * computer mark = Acer
    2009-12-27 21:00:30:455 1068 1410 report * computer model = Aspire 5315
    2009-12-27 21:00:30:471 1068 1410 report * Bios revision = V1.17
    2009-12-27 21:00:30:471 1068 1410 report * the Bios name = default system BIOS
    2009-12-27 21:00:30:471 1068 1410 report * Bios Version Date = 2007-09-14 T 00: 00:00
    2009-12-27 21:00:30:471 1068 1410 report * locale 1033 = ID
    2009-12-27 21:00:35:509 1068 a00 CWERReporter finish event management report. (00000000)
    2009-12-27 21:01:39:454 1068 CEF detection to trigger to THE via API DetectNow
    2009-12-27 21:01:39:454 1068 CEF to online (interactive) detection triggering

    2009-12-27 21:01:39:469 1068 1410 AU #.
    2009-12-27 21:01:39:469 1068 1410 AU # START # to THE: research updates
    2009-12-27 21:01:39:469 1068 1410 AU #.
    2009-12-27 21:01:39:563 1068 1410 AU<## submitted="" ##="" au:="" search="" for="" updates="" [callid="">
    2009-12-27 21:01:39:563 1068 a00 Agent *.
    2009-12-27 21:01:39:563 1068 a00 Agent * START * Agent: finding updates [CallerId = AutomaticUpdates]
    2009-12-27 21:01:39:563 1068 a00 Agent *.
    2009-12-27 21:01:39:563 1068 a00 Agent * Online = Yes; Ignore download priority = No
    2009-12-27 21:01:39:579 1068 a00 Agent * criteria = "IsInstalled = 0 and DeploymentAction = 'Installation' or IsPresent = 1 and DeploymentAction = 'Uninstall' or IsInstalled = 1 and 'Installation' and = 1 RebootRequired = DeploymentAction or IsInstalled = 0 and DeploymentAction = 'Uninstall' and RebootRequired = 1".
    2009-12-27 21:01:39:579 1068 a00 Agent * ServiceID = {9482F4B4-E343-43B6-B170-9A65BC822C77} Windows Update
    2009-12-27 21:01:39:579 1068 a00 Agent * Search Scope = {Machine}
    2009-12-27 21:01:39:579 1068 a00 Setup looking for agent SelfUpdate
    2009-12-27 21:01:39:579 1068 a00 configuration version Client: Core: 7.4.7600.226 to the: 7.4.7600.226
    2009-12-27 21:01:39:859 1068 a00 Misc validation signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2009-12-27 21:01:39:906 1068 a00 Misc Microsoft signed: Yes
    2009-12-27 21:01:40:062 1068 a00 Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2009-12-27 21:01:40:078 1068 a00 Misc Microsoft signed: Yes
    2009-12-27 21:01:40:265 1068 a00 Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2009-12-27 21:01:40:265 1068 a00 Misc Microsoft signed: Yes
    2009-12-27 21:01:40:359 1068 a00 Setup determine whether a new configuration manager should be downloaded
    2009-12-27 21:01:40:359 1068 a00 Setup SelfUpdate Manager is found.  It will be downloaded
    2009-12-27 21:01:40:359 1068 a00 Setup assessment applicability of the installation package ' ActiveX-SelfUpdate-WUClient ~ 31bf3856ad364e35 ~ x 86 ~ ~ 7.4.7600.226;
    2009-12-27 21:02:10:420 1068 a00 installation caveat: Cbs StartSession, error = 0 x 80080005
    2009-12-27 21:02:10:420 1068 a00 Setup FATAL: assessment of the applicability for installation package "ActiveX-SelfUpdate-WUClient ~ 31bf3856ad364e35 ~ x 86 ~ ~ 7.4.7600.226 ' has failed, error = 0 x 80080005
    2009-12-27 21:02:10:420 1068 a00 Setup FATAL: SelfUpdate check failed, err = 0 x 80080005
    2009-12-27 21:02:10:420 1068 a00 Agent * WARNING: jump scan, self-update check returned 0 x 80080005
    2009-12-27 21:02:10:435 1068 a00 Agent * WARNING: exit code = 0 x 80080005
    2009-12-27 21:02:10:435 1068 a00 Agent *.
    2009-12-27 21:02:10:435 1068 a00 Agent * END * Agent: finding updates [CallerId = AutomaticUpdates]
    2009-12-27 21:02:10:435 1068 a00 Agent *.
    2009-12-27 21:02:10:435 1068 a00 Agent WARNING: customer WU didn't search for the update with error 0 x 80080005
    2009-12-27 21:02:10:435 1068 eb4 to THE > # RETURN # to THE: research updates [CallId = {10EAE202-2F79-434C-8DD9-139D91EF8079}]
    2009-12-27 21:02:10:435 1068 eb4 to # WARNING: reminder of search failed, result = 0 x 80080005
    2009-12-27 21:02:10:435 1068 eb4 to # WARNING: could not find updates with error code 80080005
    2009-12-27 21:02:10:435 1068 eb4 to THE #.
    2009-12-27 21:02:10:435 1068 eb4 to # END # in THE: research updates [CallId = {10EAE202-2F79-434C-8DD9-139D91EF8079}]
    2009-12-27 21:02:10:435 1068 eb4 to THE #.
    2009-12-27 21:02:15:427 1068 a00 report REPORT EVENT: {6E883F8D-FA80-4BA7-8815-CFF4EA94577D} 21:02:10:420 2009-12-27-0500 1 148 101 {61CA813A-7585-442E-A66B-B0D15CE6BDC0} 1 80080005 SelfUpdate software failure synchronization Client Windows Update not found with error 0 x 80080005.
    2009-12-27 21:02:15:537 1068 a00 report CWERReporter::HandleEvents - WER report upload completed with status 0 x 8
    2009-12-27 21:02:15:537 1068 a00 WER sent report: 7.4.7600.226 0 x 80080005 61CA813A-7585-442E-A66B-B0D15CE6BDC0 Scan 101 unmanaged
    2009-12-27 21:02:15:537 1068 a00 CWERReporter finish event management report. (00000000)

    Any help would be greatly appreciated.  I tried something that I found the internet search, but nothing helped.

    Thank you!

    Hello

    Try this:

    Definition update fails with error 0 x 80080005 - view this section
    http://TechNet.Microsoft.com/en-us/library/bb418925.aspx

    --------------------------------------------------------------------

    The error can also be caused by malware so please do a thorough check as no program can detect
    and remove all malware. After that you are sure that the system is clean perform the cleanup.

    Download malwarebytes and scan with it, run MRT and add Prevx to be sure that he is gone. (If Rootkits run UnHackMe)

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Malwarebytes - free
    http://www.Malwarebytes.org/

    Run the malware removal tool from Microsoft

    Start - type in the search box-> find MRT top - right on - click RUN AS ADMIN.

    You should get this tool and its updates via Windows updates - if necessary, you can download it here.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN
    (Then run MRT as shown above.)

    Microsoft Malicious - 32-bit removal tool
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=AD724AE0-E72D-4F54-9AB3-75B8EB148356&displaylang=en

    Microsoft Malicious removal tool - 64 bit
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=585D2BDE-367F-495e-94E7-6349F4EFFC74&displaylang=en

    also install Prevx to be sure that it is all gone.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Prevx - Home - free - small, fast, exceptional CLOUD protection, working with other security programs. It comes
    a scan only, VERY EFFICIENT, if it finds something to come back here or use Google to see how to remove.
    http://www.prevx.com/   <-->
    http://info.prevx.com/downloadcsi.asp  <-->

    Choice of PCmag editor - Prevx-
    http://www.PCMag.com/Article2/0, 2817,2346862,00.asp

    --------------------------------------------------------

    If necessary here are some free online scanners to help the

    http://www.eset.com/onlinescan/

    http://www.Kaspersky.com/virusscanner

    Other tests free online
    http://www.Google.com/search?hl=en&source=HP&q=antivirus+free+online+scan&AQ=f&OQ=&AQI=G1

    --------------------------------------------------------

    Also do to the General corruption of cleaning and repair/replace damaged/missing system files.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    Start - type this in the search box-> find COMMAND at the top and RIGHT CLICK – RUN AS ADMIN

    Enter this at the command prompt - sfc/scannow

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    Run checkdisk - schedule it to run at the next startup, then apply OK then restart your way.

    How to run the check disk at startup in Vista
    http://www.Vistax64.com/tutorials/67612-check-disk-Chkdsk.html

    -----------------------------------------------------------------------

    If we find Rootkits use this thread and other suggestions. (Run UnHackMe)

    http://social.answers.Microsoft.com/forums/en-us/InternetExplorer/thread/a8f665f0-C793-441A-a5b9-54b7e1e7a5a4/

    --------------------------------------------------------------------

    If necessary, you can get free reports of incidents.

    Windows updates - free Incident report

    Go here and click on-> Windows Update fails while searching, downloading or installation of updates
    http://support.Microsoft.com/GP/wusupport#tab3

    The security updates, you can get free support Incident report
    http://www.Microsoft.com/protect/resources/support.aspx

    I hope this helps and happy holidays!

    Rob - bicycle - Mark Twain said it is good.

  • GetCookie failed, error = 0 x 80244008

    Greetings,

    Suddenly, I am unable to update Windows XP PRO. This is a copy of my Windows Update log from the point of the first caveat:

    2010-10-24 21:25:24:024 1776 e34 PT WARNING: caching of cookie has expired or new PID is available
    2010-10-24 21:25:26:707 1776 e34 PT WARNING: GetCookie failure, error = 0 x 80244008, the soap client error = 8, soap = 0, status = 200 HTTP code error code
    2010-10-24 21:25:26:707 1776 e34 PT WARNING: PTError: 0 x 80244008
    2010-10-24 21:25:26:707 1776 e34 PT WARNING: GetCookie_WithRecovery failed: 0 x 80244008
    2010-10-24 21:25:26:707 1776 e34 PT WARNING: RefreshCookie failed: 0 x 80244008
    2010-10-24 21:25:26:707 1776 e34 PT WARNING: RefreshPTState failed: 0 x 80244008
    2010-10-24 21:25:26:707 1776 e34 PT WARNING: synchronization of updates: 0 x 80244008
    2010-10-24 21:25:26:707 1776 e34 PT WARNING: SyncServerUpdatesInternal failed: 0 x 80244008
    2010-10-24 21:25:26:707 1776 e34 Agent * WARNING: could not synchronize, error = 0 x 80244008
    2010-10-24 21:25:26:738 1776 e34 Agent * WARNING: exit code = 0 x 80244008
    2010-10-24 21:25:26:738 1776 e34 Agent *.
    2010-10-24 21:25:26:738 1776 e34 Agent * END * Agent: finding updates [CallerId = MicrosoftUpdate] of
    2010-10-24 21:25:26:738 1776 e34 Agent *.
    2010-10-24 21:25:26:738 1776 e34 Agent WARNING: customer WU didn't search for the update with error 0 x 80244008
    2010-10-24 21:25:26:778 3728 7f4 COMAPI > COMAPI - RECOVERY -: search [ClientId = MicrosoftUpdate]
    2010-10-24 21:25:26:778 3728 7f4 COMAPI - updates found = 0
    2010-10-24 21:25:26:778 3728 7f4 COMAPI - WARNING: exit code = 0x00000000, result code = 0 x 80244008
    2010-10-24 21:25:26:778 3728 7f4 COMAPI-
    2010-10-24 21:25:26:778 3728 7f4 COMAPI - END--COMAPI: search [ClientId = MicrosoftUpdate]
    2010-10-24 21:25:26:848 3728 7f4 COMAPI-
    2010-10-24. 3728 868 COMAPI WARNING 21:25:26:898: operation failed because the previous error, hr = 80244008
    2010-10-24. 3728 868 COMAPI FATALE 21:25:26:898: impossible search asynchronous complete. (hr = 80244008)
    2010-10-24 21:25:31:745 1776 e34 report REPORT EVENT: {BB3F755B-D510-4EBD-815B-A6C4A5A4529D} 2010-10-24 21:25:26:738 - 0700 1 148 101 {00000000-0000-0000-0000-000000000000} 80244008 0 MicrosoftUpdate software failure synchronization Client Windows Update not found with error 0 x 80244008.

    If someone could help me I would be very happy. I did some internet research widely & include it's telling a different problem involving the connection with update server. I'll post the log, if anyone asks for help.

    Thank you

    Rich

    OK, apparently an obscure appeal of your link corrected my mistake:
    Windows XP and Windows Server 2003 to remove the entry from the proxy server of the configuration of proxy WinHTTP for Windows XP and Windows Server 2003, follow these steps:

    1. Open Internet Explorer.
    2. On the Tools menu, click Internet Options .
    3. Click the connections tab, and then click LAN settings .
    4. In the local area network (LAN) settings dialog box, click to select the check boxautomatically detect settings , and then click OK .
    5. Exit Internet Explorer.
    6. Click Start and then click run .
    7. Copy and then paste (or type) the following command in the run box, and then press ENTER:
      cmd
    8. Type the following commands. Press ENTER after each command.
      1. proxycfg d
      2. net stop wuauserv
      3. net start wuauserv
      4. output
    9. Return to the Windows Update or Microsoft Update site and try to download and install the updates again.

    Why I need suddenly to do this for my system is a mystery to me, but thanks for the boost.

    Rich

  • Vista error 80072efe installation code after fees

    I recently made a new installation of Vista, after getting a new hard drive, but I get the error 80072efe code from windows update. Any help would be appreciated gratefully.

    In addition to this question I can access the internet normally.
    The only change I made to the system had to change my MTU on the same setting that I used until I reinstalled Vista:
    netsh interface ipv4 set subinterface "Local network connection" mtu = 1400 store = persistent

    I tried running windows update every day for the past week and get similar behavior.
    I have deleted the partition and resinstalled Vista 4 times and tried to update before installing windows and programs and get similar behavior.
    I reset my router.
    I added the update URL as trusted sites.

    Here is my \SoftwareDistribution\ReportingEvents.txt:

    19:43:29:278 2009-07-15 + 0100 1 162 101 {B890A5BC-7090-4E80-9080-CA9C8EABE77D} {61CA813A-7585-442E-A66B-B0D15CE6BDC0} 1 0 SelfUpdate success content download download succeeded.
    19:43:29:293 2009-07-15 + 0100 1 201 101 {831ECA2E-C602-4E20-8111-ABC60A6A2F78} {E2FF4526-97D7-4926-8E75-295DBA39C6BF} 1 0 content SelfUpdate success install Installation pending.
    19:44:18:789 2009-07-15 + 0100 1 190 101 {7D884B48-E10D-4053-B7F7-B5E53464FC90} {174EAAC7-5A3D-448F-BE6F-D6FE450E1DCF} 1 0 SelfUpdate success content install Installation successful: Windows successfully installed the following update: ActiveX in Windows Update
    19:44:18:789 2009-07-15 + 0100 1 190 101 {57CA28FC-7B35-462A-BE1D-C23162B65603} {E2FF4526-97D7-4926-8E75-295DBA39C6BF} 1 0 SelfUpdate success content install Installation successful: Windows successfully installed the following update: Windows Update central
    19:53:01:295 2009-07-15 {61F3F1E3-F505-4735-A8A1-D9755CD91D69} + 0100 1 199 101 {0011B9ED-9189-4D58-BE25-FA2F13FC3D6C} 240005 1 SelfUpdate success content install Installation successful and restart required for the next update: Windows Update to the
    20:21:08:891 2009-07-15 + 0100 1 148 101 {58EE1890-78ED-49E7-8E8C-7FD3EE5BF283} {00000000-0000-0000-0000-000000000000} 0 8024400 has AutomaticUpdates failure timing Windows Update Client software has not detected with 0x8024400a error.
    21:01:44:858 2009-07-15 + 0100 1 148 101 {24C2DE68-6592-4F99-B6C8-D2A68D9DE9B2} {00000000-0000-0000-0000-000000000000} 0 80072efe AutomaticUpdates outage software to sync Windows Update Client did not detect with error 0x80072efe.
    21:41:22:619 2009-07-15 + 0100 1 202 102 {5D20DDCD-5C7B-4A8F-A542-3174A3E1D06E} {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdates content success installation reboot completed.
    07:28:31:408 2009-07-16 + 0100 1 147 101 {BDEBF831-DB6D-4731-ADDA-B3418A6DDB61} {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdates success software sync Windows Update Client detected 0 updates successfully.
    07:26:10:456 2009-07-17 + 0100 1 148 101 {D50A1202-0F21-486B-8E18-6761C5D0D12B} {00000000-0000-0000-0000-000000000000} 0 80072efe AutomaticUpdates outage software to sync Windows Update Client did not detect with error 0x80072efe.
    17:44:30:530 2009-07-17 + 0100 1 148 101 {A1AAD90E-D79C-4E2C-AB89-EBBA63693EA0} {00000000-0000-0000-0000-000000000000} 0 8024400 has AutomaticUpdates failure timing Windows Update Client software has not detected with 0x8024400a error.
    17:46:03:686 2009-07-17 + 0100 1 148 101 {32107CB6-6283-4DE9-8A86-06CC53875BA0} {00000000-0000-0000-0000-000000000000} 0 80072efe software failure synchronization Client Windows Update did not detect with error 0x80072efe.
    18:00:32:602 2009-07-17 + 0100 1 148 101 {41EA94B1-25FC-4C28-BC87-191FBBEDC8ED} {00000000-0000-0000-0000-000000000000} 0 80072efe AutomaticUpdates outage software to sync Windows Update Client did not detect with error 0x80072efe.
    08:51:24:405 2009-07-18 + 0100 1 148 101 {BC49C273-7CE5-4B93-97A8-8BA942F46DC3} {00000000-0000-0000-0000-000000000000} 0 80072efe AutomaticUpdates outage software to sync Windows Update Client did not detect with error 0x80072efe.

    I changed my router to my old USB modem and now I can see Windows updates.
    I'll try to reset or flashing of my router and see if it works.

  • WSUS 3.0 SP2 and Windows 7 works only together... "unpublished".

    good then it gives me a bit of a nightmare.

    I have a 2008 r2 with WSUS 3.0 box setup; my vista and xp clients connect with happiness and go about their business update.

    All Windows 7 clients in the Organization have failed. It comes to systems running the same SOE but also covers systems running manual install of Windows 7, this verisons them Professional and windows 7 32 bit Enterprise.

    So it is a big business problem. I first tried all the traditional methods, such as installing manually windows update version 7.4.7600.226 agent on my clients windows 7, I simply get an error message stating "Setup of the Windows Update Agent met with a fatal error.

    I tried to rename c:\Windows\SoftwareDistribution folder, then restart the service of wu. Honestly, I think that this issue is also that as the number of computers, it's also affecting.

    I also tried to manually replace all files windows agent update 7.4.7600.226 on a windows 7 the problem with system. If I look at the WSUS console, he gets the change of 7.3.7600.16385 to 7.4.7600.226 version but it is not help me solve the problem. If I look in my WSUS console I see all XP/VISTA machines are running 7.4.7600.226 and they work perfectly. Windows7 machines ALL running 7.3.7600.16385 and all fail with '8008005' and showing the same problems in windowsupdate.log

    On windows 7 clients if I try manually pushing an update, I get the error code ' 8008005' and in the WSUS console, he continues to show yet to be reported.»

    I have included a summary of a file windowsupdate.log among machines of affect.

    ------------

    2010-07-07 10:04:18:862 900 b60 Misc = logging initialized (build: 7.3.7600.16385, tz: + 0930) =.
    2010-07-07 10:04:18:880 900 b60 Misc = process: C:\Windows\system32\svchost.exe
    2010-07-07 10:04:18:880 900 b60 Misc = Module: c:\windows\system32\wuaueng.dll
    2010-07-07 10:04:18:862 900 b60 Service *.
    2010-07-07 10:04:18:880 900 b60 Service * START * Service: Service startup
    2010-07-07 10:04:18:880 900 b60 Service *.
    2010-07-07 10:04:18:956 900 b60 Agent * WU client version 7.3.7600.16385
    2010-07-07 10:04:18:956 900 b60 Agent * Base Directory: C:\Windows\SoftwareDistribution
    2010-07-07 10:04:18:957 900 b60 Agent * access type: no proxy
    2010-07-07 10:04:18:957 900 b60 Agent * network state: connected
    2010-07-07 10:05:04:111 900 CWERReporter::Init b60 successful report
    2010-07-07 10:05:04:112 900 b60 Agent * Agent: initialization of Windows Update Agent *.
    2010-07-07 10:05:04:112 900 b60 Agent * Agent: initialization of the global parameters cache *.
    2010-07-07 10:05:04:112 900 b60 Agent * WSUS server:http://spcfsv001.contoso.internal
    2010-07-07 10:05:04:112 900 b60 Agent * state WSUS server:http://spcfsv001.contoso.internal
    2010-07-07 10:05:04:112 900 b60 Agent * target group: (Unassigned Computers)
    2010-07-07 10:05:04:112 900 b60 Agent * Windows Update access disabled: No.
    2010-07-07 10:05:04:122 900 b60 DnldMgr Download manager restoring 0 downloads
    2010-07-07 10:05:04:123 900 b60 to THE # to THE: initialization of automatic updates.
    2010-07-07 10:05:04:124 900 b60 to THE timeout parameter next detection at 2010-07-07 00:35:04
    2010-07-07 10:05:04:124 900 b60 to THE # WSUS server:http://spcfsv001.contoso.internal
    2010-07-07 10:05:04:124 900 b60 detection frequency to THE #: 22
    2010-07-07 10:05:04:124 900 b60 to # approval type: on demand (political)
    2010-07-07 10:05:04:124 900 b60 to THE # scheduled install date and time: every day at 17:00
    2010-07-07 10:05:04:124 900 b60 to THE # automatically install minor updates: Yes (user preference)
    2010-07-07 10:05:04:125 900 b60, the phase of installation to THE adjustment to THE planned at 2010-07-07 07:30
    2010-07-07 10:05:04:553 900 b60 report * report: initialization of static data to report *.
    2010-07-07 10:05:04:553 900 b60 report * OS Version = 6.1.7600.0.0.65792
    2010-07-07 10:05:04:553 900 b60 report * OS Product Type = 0 x 00000004
    2010-07-07 10:05:04:590 900 b60 report * computer brand = Gigabyte Technology Co., Ltd..
    2010-07-07 10:05:04:590 900 b60 report * computer model = G31M-ES2C
    2010-07-07 10:05:04:595 900 b60 report * Bios revision = CF
    2010-07-07 10:05:04:595 900 b60 report * name of Bios = BIOS Award Modular v6.00PG
    2010-07-07 10:05:04:595 900 b60 report * the Bios Release Date = 2009-07 - 02 T 00: 00:00
    2010-07-07 10:05:04:595 900 b60 report * locale ID = 3081
    2010-07-07 10:05:04:741 900 AU b60 successfully wrote event to THE health state: 0
    2010-07-07 10:05:04:741 900 b60 to THE initialization feature updates
    2010-07-07 10:05:04:741 900 b60 to THE Found set 0 cached updates featured
    2010-07-07 10:05:04:742 900 AU b60 successfully wrote event to THE health state: 0
    2010-07-07 10:05:04:742 900 AU b60 successfully wrote event to THE health state: 0
    2010-07-07 10:05:04:742 900 b60 to THE delayed finish to initialize
    2010-07-07 10:05:04:743 900 b60 to THE #.
    2010-07-07 10:05:04:743 900 b60 to THE # START # to THE: research updates
    2010-07-07 10:05:04:743 900 b60 to THE #.
    2010-07-07 10:05:04:798 900 AU b60<## submitted="" ##="" au:="" search="" for="" updates="" [callid="">
    2010-07-07 10:05:04:798 900 d94 Agent *.
    2010-07-07 10:05:04:798 900 d94 Agent * START * Agent: finding updates [CallerId = AutomaticUpdates]
    2010-07-07 10:05:04:798 900 d94 Agent *.
    2010-07-07 10:05:04:798 900 d94 Agent * Online = No; Ignore download priority = No
    2010-07-07 10:05:04:798 900 d94 Agent * criteria = "IsInstalled = 0 and DeploymentAction = 'Installation' or IsPresent = 1 and DeploymentAction = 'Uninstall' or IsInstalled = 1 and 'Installation' and = 1 RebootRequired = DeploymentAction or IsInstalled = 0 and DeploymentAction = 'Uninstall' and RebootRequired = 1".
    2010-07-07 10:05:04:798 900 d94 Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2010-07-07 10:05:04:798 900 d94 Agent * Search Scope = {Machine}
    2010-07-07 10:05:04:890 900 d94 Agent * found 0 updates day and 0 categories in the search. rules of RCT evaluated 0 out of 0 deployed entities
    2010-07-07 10:05:04:892 900 d94 Agent *.
    2010-07-07 10:05:04:892 900 d94 Agent * END * Agent: finding updates [CallerId = AutomaticUpdates]
    2010-07-07 10:05:04:892 900 d94 Agent *.
    2010-07-07 10:05:04:892 900 AU d98 > # RETURN # to THE: research updates [CallId = {A8468B2E-C141-44E3-9D88-17395E6367F8}]
    2010-07-07 10:05:04:892 900 d98 at # 0 updates detected
    2010-07-07 10:05:04:892 900 d98 with THE #.
    2010-07-07 10:05:04:892 900 d98 to # END # in THE: research updates [CallId = {A8468B2E-C141-44E3-9D88-17395E6367F8}]
    2010-07-07 10:05:04:892 900 d98 with THE #.
    2010-07-07 10:05:04:892 900 d98-notifications to THE present is disabled.
    2010-07-07 10:05:04:892 900 d98 phase of installation to THE adjustment to THE planned at 2010-07-07 07:30
    2010-07-07 10:05:04:892 900 AU d98 successfully wrote event to THE health state: 0
    2010-07-07 10:05:04:893 900 AU d98 successfully wrote event to THE health state: 0
    2010-07-07 10:05:04:893 900 b60 to THE #.
    2010-07-07 10:05:04:893 900 b60 to THE # START # to THE: research updates
    2010-07-07 10:05:04:893 900 b60 to THE #.
    2010-07-07 10:05:04:894 900 AU b60<## submitted="" ##="" au:="" search="" for="" updates="" [callid="">
    2010-07-07 10:05:04:894 900 d94 Agent *.
    2010-07-07 10:05:04:894 900 d94 Agent * START * Agent: finding updates [CallerId = AutomaticUpdates]
    2010-07-07 10:05:04:894 900 d94 Agent *.
    2010-07-07 10:05:04:894 900 d94 Agent * Online = Yes; Ignore download priority = No
    2010-07-07 10:05:04:894 900 d94 Agent * criteria = "IsInstalled = 0 and DeploymentAction = 'Installation' or IsPresent = 1 and DeploymentAction = 'Uninstall' or IsInstalled = 1 and 'Installation' and = 1 RebootRequired = DeploymentAction or IsInstalled = 0 and DeploymentAction = 'Uninstall' and RebootRequired = 1".
    2010-07-07 10:05:04:894 900 d94 Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2010-07-07 10:05:04:894 900 d94 Agent * Search Scope = {Machine}
    2010-07-07 10:05:04:894 900 d94 Setup looking for agent SelfUpdate
    2010-07-07 10:05:04:895 900 d94 configuration version Client: Core: 7.3.7600.16385 to the: 7.3.7600.16385
    2010-07-07 10:05:04:904 900 d94 Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2010-07-07 10:05:04:940 900 d94 Misc Microsoft signed: Yes
    2010-07-07 10:05:07:198 900 d94 Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2010-07-07 10:05:07:202 900 d94 Misc Microsoft signed: Yes
    2010-07-07 10:05:07:240 900 d94 Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2010-07-07 10:05:07:260 900 d94 Misc Microsoft signed: Yes
    2010-07-07 10:05:07:269 900 d94 Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2010-07-07 10:05:07:273 900 d94 Misc Microsoft signed: Yes
    2010-07-07 10:05:07:372 900 d94 Setup determine whether a new configuration manager should be downloaded
    2010-07-07 10:05:07:372 900 d94 Setup Manager SelfUpdate is not found.  It will be downloaded
    2010-07-07 10:05:07:372 900 d94 Setup assessment applicability of the installation package ' ActiveX-SelfUpdate-WUClient ~ 31bf3856ad364e35 ~ x 86 ~ ~ 7.4.7600.226;
    2010-07-07 10:05:37:646 900 d94 installation caveat: Cbs StartSession, error = 0 x 80080005
    2010-07-07 10:05:37:646 900 d94 Setup FATAL: assessment of the applicability for installation package "ActiveX-SelfUpdate-WUClient ~ 31bf3856ad364e35 ~ x 86 ~ ~ 7.4.7600.226 ' has failed, error = 0 x 80080005
    2010-07-07 10:05:37:646 900 d94 Setup FATAL: SelfUpdate check failed, err = 0 x 80080005
    2010-07-07 10:05:37:647 900 d94 Agent * WARNING: jump scan, self-update check returned 0 x 80080005
    2010-07-07 10:05:37:647 900 d94 Agent * WARNING: exit code = 0 x 80080005
    2010-07-07 10:05:37:647 900 d94 Agent *.
    2010-07-07 10:05:37:647 900 d94 Agent * END * Agent: finding updates [CallerId = AutomaticUpdates]
    2010-07-07 10:05:37:647 900 d94 Agent *.
    2010-07-07 10:05:37:647 900 d94 Agent WARNING: customer WU didn't search for the update with error 0 x 80080005
    2010-07-07 10:05:37:647 900 AU d98 > # RETURN # to THE: research updates [CallId = {0A71D3FE-B9BC-4B73-B7A2-AC3787D8D9E4}]
    2010-07-07 10:05:37:647 900 d94 report REPORT EVENT: 10:05:04:742 2010-07-07 + 0930 1 202 102 {1E3A0E26-9FB7-42F0-8DA5-99C3D5CCC453} {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdates content success installation reboot completed.
    2010-07-07 10:05:37:647 900 d98 to # WARNING: reminder of search failed, result = 0 x 80080005
    2010-07-07 10:05:37:647 900 d98 to # WARNING: could not find updates with error code 80080005
    2010-07-07 10:05:37:647 900 d98 with THE #.
    2010-07-07 10:05:37:647 900 d98 to # END # in THE: research updates [CallId = {0A71D3FE-B9BC-4B73-B7A2-AC3787D8D9E4}]
    2010-07-07 10:05:37:647 900 d98 with THE #.
    2010-07-07 10:05:37:647 900 AU d98 successfully wrote event to THE health state: 0
    2010-07-07 10:05:37:647 900 d98 with THE timeout parameter next detection at 2010-07-07 05:35:37
    2010-07-07 10:05:37:647 900 d98 phase of installation to THE adjustment to THE planned at 2010-07-07 07:30
    2010-07-07 10:05:37:648 900 AU d98 successfully wrote event to THE health state: 0
    2010-07-07 10:05:37:648 900 AU d98 successfully wrote event to THE health state: 0
    2010-07-07 10:05:37:670 900 d94 report CWERReporter finish event management. (00000000)
    2010-07-07 10:05:42:629 900 d94 report REPORT EVENT: 10:05:37:646 2010-07-07 + 0930 1 148 101 {A4993B4F-7329-405D-8435-093B74B867B1} {61CA813A-7585-442E-A66B-B0D15CE6BDC0} 1 80080005 SelfUpdate software failure synchronization Client Windows Update not found with error 0 x 80080005.
    2010-07-07 10:05:42:672 900 d94 report CWERReporter::HandleEvents - WER report upload completed with status 0 x 8
    2010-07-07 10:05:42:672 900 d94 WER sent report: 7.3.7600.16385 61CA813A-7585-442E-A66B-B0D15CE6BDC0 0 x 80080005 Scan managed 101
    2010-07-07 10:05:42:672 900 d94 report CWERReporter finish event management. (00000000)

    ------

    any suggestions or advice would be so greatly appreciated...

    Thank you all

    Right Church wrong Pew.

    Specific WSUS Forum: http://social.technet.microsoft.com/Forums/en-US/winserverwsus/threads

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • 1. Windows cannot verify the 2 updates. Unable to connect to a windows service

    Hello, I need help,

    I tried a few KB.

    I have Windows Vista 64 bit version 6 build 6002 SP2

    It is a tower only normal windowsupdatelog it on ad turn it off

    2010-05-04 07:23:44:649 616 a7c Misc = logging initialized (build: 7.4.7600.226, tz:-0400) =.
    2010-05-04 07:23:44:680 616 a7c Misc = process: C:\Windows\system32\svchost.exe
    2010-05-04 07:23:44:680 616 a7c Misc = Module: c:\windows\system32\wuaueng.dll
    2010-05-04 07:23:44:649 616 a7c Service *.
    2010-05-04 07:23:44:680 616 a7c Service * START * Service: Service startup
    2010-05-04 07:23:44:680 616 a7c Service *.
    2010-05-04 07:23:44:930 616 a7c Agent * WU version 7.4.7600.226 customer
    2010-05-04 07:23:44:930 616 a7c Agent * Base Directory: C:\Windows\SoftwareDistribution
    2010-05-04 07:23:44:930 616 a7c Agent * access type: no proxy
    2010-05-04 07:23:44:992 616 a7c Agent * network state: connected
    2010-05-04 07:24:31:369 616 CWERReporter::Init successful a7c report
    2010-05-04 07:24:31:384 616 a7c Agent * Agent: initialization of Windows Update Agent *.
    2010-05-04 07:24:31:416 616 a7c Agent * Agent: initialization of the global parameters cache *.
    2010-05-04 07:24:31:416 616 a7c Agent * WSUS server:
    2010-05-04 07:24:31:416 616 a7c Agent * state WSUS server:
    2010-05-04 07:24:31:416 616 a7c Agent * target group: (Unassigned Computers)
    2010-05-04 07:24:31:416 616 a7c Agent * Windows Update access disabled: No.
    2010-05-04 07:24:31:462 616 a7c DnldMgr Download manager restoring 0 downloads
    2010-05-04 07:24:31:525 616 a7c DnldMgr recovered 1 persisted download jobs
    2010-05-04 07:24:31:525 616 a7c DnldMgr * DnldMgr: restore download [n ° 0] *.
    2010-05-04 07:24:31:525 616 a7c DnldMgr * BITS JobId = {C4EB2B5D-60BB-4F1A-B3BF-24B0E08E476C}
    2010-05-04 07:24:31:525 616 a7c DnldMgr * ServiceId = {9482F4B4-E343-43B6-B170-9A65BC822C77}
    2010-05-04 07:24:31:696 616 a7c DnldMgr * UpdateId = {317E3788-02F5-4D0D-AF81-3EBD14857804}.100
    2010-05-04 07:25:15:657 616 a7c DnldMgr * job download restored.
    2010-05-04 07:25:17:311 616 a7c to THE # to THE: initialization of automatic updates.
    2010-05-04 07:25:17:326 616 a7c to THE timeout parameter next detection at 2010-05-04 11:25:17
    2010-05-04 07:25:17:342 616 a7c to # approval type: on demand (user preference)
    2010-05-04 07:25:17:342 616 a7c to THE # scheduled install date and time: every day at 21:00
    2010-05-04 07:25:17:342 616 a7c to THE # automatically install minor updates: Yes (user preference)
    2010-05-04 07:25:17:342 616 a7c to THE # will interact with non-admins (Non-admins are high (user preference))
    2010-05-04 07:25:17:342 616 a7c to # poster of notifications of recommended software (user preference)
    2010-05-04 07:25:18:294 616 a7c phase of installation to THE adjustment to THE planned for 2010-05-05 01:00
    2010-05-04 07:25:18:294 616 a7c to THE initialization feature updates
    2010-05-04 07:25:18:294 616 a7c to THE Found set 0 cached updates featured
    2010-05-04 07:25:18:294 616 a7c setting of to THE pending client directive to 'Impossible to detect ".
    2010-05-04 07:25:18:325 616 a7c to THE delayed finish to initialize
    2010-05-04 07:25:19:822 616 a7c report * report: initialization of static data to report *.

    2010-05-04 07:25:19:822 616 a7c report * OS Version = 6.0.6002.2.0.66304
    2010-05-04 07:25:19:822 616 a7c report * OS Product Type = 0 x 00000003
    2010-05-04 07:25:22:303 616 a7c report * computer brand = Hewlett-Packard
    2010-05-04 07:25:22:303 616 a7c report * Computer Model = HP Pavilion dv4 Notebook PC
    2010-05-04 07:25:22:350 616 a7c report * Bios revision = F.12
    2010-05-04 07:25:22:350 616 a7c report * the Bios name = default system BIOS
    2010-05-04 07:25:22:350 616 a7c report * the Bios Release Date = 2008-08 - 26 T 00: 00:00
    2010-05-04 07:25:22:350 616 a7c report * locale 1033 = ID
    2010-05-04 07:25:22:443 616 a7c to THE #.
    2010-05-04 07:25:22:443 616 a7c to THE # START # to THE: research updates
    2010-05-04 07:25:22:443 616 a7c to THE #.
    2010-05-04 07:25:22:459 616 at THE a7c<## submitted="" ##="" au:="" search="" for="" updates="" [callid="">
    2010-05-04 07:25:22:490 616 1234 Agent *.
    2010-05-04 07:25:22:490 616 1234 Agent * START * Agent: finding updates [CallerId = AutomaticUpdates]
    2010-05-04 07:25:22:490 616 1234 Agent *.
    2010-05-04 07:25:22:490 616 1234 Agent * Online = Yes; Ignore download priority = No
    2010-05-04 07:25:22:490 616 1234 Agent * criteria = "IsInstalled = 0 and DeploymentAction = 'Installation' or IsPresent = 1 and DeploymentAction = 'Uninstall' or IsInstalled = 1 and 'Installation' and = 1 RebootRequired = DeploymentAction or IsInstalled = 0 and DeploymentAction = 'Uninstall' and RebootRequired = 1".
    2010-05-04 07:25:22:490 616 1234 Agent * ServiceID = {7971F918-A847-4430-9279-4A52D1EFE18D} third service
    2010-05-04 07:25:22:490 616 1234 Agent * scope of search = {Machine}
    2010-05-04 07:25:22:662 616 1234 Misc validation signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2010-05-04 07:25:23:098 616 1234 Misc Microsoft signed: Yes
    2010-05-04 07:25:26:530 616 1234 Misc validation signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2010-05-04 07:25:26:546 616 1234 Misc Microsoft signed: Yes
    2010-05-04 07:25:26:640 616-1234 Agent looking for updates auth cabin for service 7971f918-a847-4430-9279-4a52d1efe18d to http://download.windowsupdate.com/v9/microsoftupdate/redir/muauth.cab
    2010-05-04 07:25:26:640 616 1234 Misc validation signature for C:\Windows\SoftwareDistribution\AuthCabs\authcab.cab:
    2010-05-04 07:25:26:671 616 1234 Misc Microsoft signed: Yes
    2010-05-04 07:25:26:702 616 1234 Misc validation signature for C:\Windows\SoftwareDistribution\AuthCabs\authcab.cab:
    2010-05-04 07:25:26:702 616 1234 Misc Microsoft signed: Yes
    2010-05-04 07:25:26:702 616 1234 Setup looking for agent SelfUpdate
    2010-05-04 07:25:26:702 616 version Setup Client 1234: Core: 7.4.7600.226 to the: 7.4.7600.226
    2010-05-04 07:25:26:718 616 1234 Misc validation signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2010-05-04 07:25:26:733 616 1234 Misc Microsoft signed: Yes
    2010-05-04 07:25:26:749 616 1234 Misc validation signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2010-05-04 07:25:26:764 616 1234 Misc Microsoft signed: Yes
    2010-05-04 07:25:26:764 616 1234 Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2010-05-04 07:25:26:796 616 1234 Misc Microsoft signed: Yes
    2010-05-04 07:25:29:947 616 1234 Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2010-05-04 07:25:29:978 616 1234 Misc Microsoft signed: Yes
    2010-05-04 07:25:30:056 616 1234 Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2010-05-04 07:25:30:087 616 1234 Misc Microsoft signed: Yes
    2010-05-04 07:25:30:103 616 1234 Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2010-05-04 07:25:30:118 616 1234 Misc Microsoft signed: Yes
    2010-05-04 07:25:30:992 616 1234 Setup determine whether a new configuration manager should be downloaded
    2010-05-04 07:25:31:008 616 1234 Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\Handler\WuSetupV.exe:
    2010-05-04 07:25:31:023 616 1234 Misc Microsoft signed: Yes
    2010-05-04 07:25:31:023 616 1234 Setup Manager SelfUpdate unnecessary update: current version: 7.4.7600.226, required version: 7.4.7600.226
    2010-05-04 07:25:31:023 616 applicability of 1234 assess setup of the installation package ' ActiveX-SelfUpdate-WUClient ~ 31bf3856ad364e35 ~ amd64 ~ ~ 7.4.7600.226;
    2010-05-04 07:25:31:226 616 1234 installation caveat: Cbs StartSession, error = 0 x 80070002
    2010-05-04 07:25:31:226 616 1234 Setup FATAL: assessment of the applicability for installation package "WUClient-SelfUpdate-ActiveX ~ 31bf3856ad364e35 ~ amd64 ~ ~ 7.4.7600.226 ' has failed, error = 0 x 80070002
    2010-05-04 07:25:31:226 616 1234 Setup FATAL: SelfUpdate check failed, err = 0 x 80070002
    2010-05-04 07:25:31:226 616 1234 Agent * WARNING: jump scan, self-update check returned 0 x 80070002
    2010-05-04 07:25:32:677 616 1234 Agent * WARNING: exit code = 0 x 80070002
    2010-05-04 07:25:32:677 616 1234 Agent *.
    2010-05-04 07:25:32:677 616 1234 Agent * END * Agent: finding updates [CallerId = AutomaticUpdates]
    2010-05-04 07:25:32:677 616 1234 Agent *.
    2010-05-04 07:25:32:677 616 1234 Agent WARNING: customer WU didn't search for the update with error 0 x 80070002
    2010-05-04 07:25:32:708 616 12dc to THE > # RETURN # to THE: research updates [CallId = {F05D2FCA-928C-4FAD-A76F-E1D72855BFA5}]
    2010-05-04 07:25:32:708 616 12dc to # WARNING: reminder of search failed, result = 0 x 80070002
    2010-05-04 07:25:32:708 616 12dc to # WARNING: could not find updates with error code 80070002
    2010-05-04 07:25:32:708 616 12dc to THE #.
    2010-05-04 07:25:32:708 616 12dc to # END # in THE: research updates [CallId = {F05D2FCA-928C-4FAD-A76F-E1D72855BFA5}]
    2010-05-04 07:25:32:708 616 12dc to THE #.
    2010-05-04 07:25:32:708 616 12dc to THE timeout parameter next detection at 2010-05-04 16:25:32
    2010-05-04 07:25:32:708 616 12dc, the phase of installation to THE adjustment to THE planned for 2010-05-05 01:00
    2010-05-04 07:25:33:363 616 launched a7c again to THE customer for the directive 'Impossible to detect', session id = 0x1
    2010-05-04 07:25:36:468 616 1234 CWERReporter finish event management report. (00000000)
    2010-05-04 07:25:36:499 616 1234 report REPORT EVENT: {2A6CF20B-F0FE-43EC-B1CD-3C8A9145FFB2} 07:25:31:226 2010-05-04-0400 1 148 101 {61CA813A-7585-442E-A66B-B0D15CE6BDC0} 1 80070002 SelfUpdate software failure synchronization Client Windows Update not found with error 0 x 80070002.
    2010-05-04 07:25:36:530 616 1234 report CWERReporter::HandleEvents - WER report upload completed with status 0 x 8
    2010-05-04 07:25:36:530 616 1234 WER sent report: 7.4.7600.226 0 x 80070002 61CA813A-7585-442E-A66B-B0D15CE6BDC0 Scan 101 unmanaged
    2010-05-04 07:25:36:530 616 1234 CWERReporter finish event management report. (00000000)
    2010-05-04 07:30:04:802 616 a7c event handle to THE receipt
    2010-05-04 07:30:04:802 616 a7c setting of to THE pending client directive to 'Impossible to detect ".
    2010-05-04 07:30:09:574 616 a7c Shutdwn user refused the update stopped
    2010-05-04 07:30:09:574 616 a7c to THE to THE initiates stopping service
    2010-05-04 07:30:09:574 616 a7c to THE # to THE: initialization of automatic updates.
    2010-05-04 07:30:09:574 616 Manager a7c FATAL: UH: 0 x 80070002: StartSession failed in CCbs::IsCbsPending
    2010-05-04 07:30:09:715 616 a7c DnldMgr FATALE: DM:CBitsJob:SetCallbackHandler: SetNotifyInterface failed with 0 x 80010108.
    2010-05-04 07:30:09:715 616 a7c DnldMgr FATALE: DM:CBitsJob:SetCallbackHandler: SetNotifyInterface failed with 0 x 80010108.
    2010-05-04 07:30:09:715 616 a7c report CWERReporter finish event management. (00000000)
    2010-05-04 07:30:09:840 616 a7c Service *.
    2010-05-04 07:30:09:840 616 a7c Service * END * Service: out of Service [exit code = 0 x 240001]
    2010-05-04 07:30:09:840 616 a7c Service *.

    You should have installed the free trial version of Avast Internet Security (or Avast free or any other anti-virus application) before the expiration of your subscription to Norton.

    Only a clean install of Vista will restore your computer to a State safe & functional.

  • WindowsUpdate: SelfUpdate check failed download package information, error = 0x80070005

    Windows Update does not work. However, I can download and install updates manually on microsoft.com. But it does not work automatically.

    To resolve this problem, I tried this:

    http://Windows.Microsoft.com/de-de/Windows7/Windows-Update-Error-80070002

    and this:

    http://support.Microsoft.com/mats/windows_update/de

    The data content of WindowsUpdate.txt:

    2011-11-23 19:28:37:945 120 9 d 4 Misc = logging initialized (build: 7.5.7601.17514, tz: + 0100) =.
    2011-11-23 19:28:38:023 120 9 d 4 Misc = process: C:\Windows\system32\svchost.exe
    2011-11-23 19:28:38:023 120 9 d 4 Misc = Module: c:\windows\system32\wuaueng.dll
    2011-11-23 19:28:37:789 120 9 d 4 Service *.
    2011-11-23 19:28:38:023 120 9 d 4 Service * START * Service: Service startup
    2011-11-23 19:28:38:039 120 9 d 4 Service *.
    2011-11-23 19:28:38:585 120 9 d 4 Agent * WU client version 7.5.7601.17514
    2011-11-23 19:28:38:585 120 9 d 4 Agent * Base Directory: C:\Windows\SoftwareDistribution
    2011-11-23 19:28:38:585 120 9 d 4 Agent * access type: no proxy
    2011-11-23 19:28:38:585 120 9 d 4 Agent * network state: connected
    2011-11-23 19:29:24:387 120 9 d 4 CWERReporter::Init report was successful
    2011-11-23 19:29:24:387 120 9 d 4 Agent * Agent: initialization of Windows Update Agent *.
    2011-11-23 19:29:24:387 120 9 d 4 Agent * Agent: initialization of the global parameters cache *.
    2011-11-23 19:29:24:387 120 9 d 4 Agent * WSUS server:
    2011-11-23 19:29:24:387 120 9 d 4 Agent * state WSUS server:
    2011-11-23 19:29:24:387 120 9 d 4 Agent * target group: (Unassigned Computers)
    2011-11-23 19:29:24:387 120 9 d 4 Agent * Windows Update access disabled: No.
    2011-11-23 19:29:24:418 120 9 d 4 DnldMgr Download manager restoring 0 downloads
    2011-11-23 19:29:24:465 120 9 d 4 to THE # to THE: initialization of automatic updates #.
    type of approval # to THE 120 9 2011-11-23 19:29:24:480 d 4: on demand (user preference)
    2011-11-23 19:29:24:480 120 9 d 4 to THE # scheduled install date and time: every day at 03:00
    minor updates to the # Auto - install 2011 - 11 - 23 19:29:24:480 120-9 d 4 - UA: Yes (user preference)
    2011-11-23 19:29:24:480 120 9 d 4 to THE # will interact with non-admins (Non-admins are high (user preference))
    2011 11-23 19:29:24:480 120 9 d 4 to # displays software notifications recommended (user preference)
    2011-11-23 19:29:24:480 120 9 d 4 to THE adjustment to THE expected install time 24 / 11 / 2011 02:00
    2011-11-23 19:29:24:995 120 9 d 4 report * report: initialization of static data to report *.
    2011-11-23 19:29:24:995 120 9 d 4 report * OS Version = 6.1.7601.1.0.66304
    2011-11-23 19:29:24:995 120 9 d 4 report * OS Product Type = 0 x 00000003
    2011-11-23 19:29:25:011 120 9 d 4 report * computer brand = system manufacturer
    2011-11-23 19:29:25:011 120 9 d 4 report * computer model = system Product Name
    2011-11-23 19:29:25:011 120 9 d 4 report * Bios revision = 1005
    2011-11-23 19:29:25:011 120 9 d 4 report * name of Bios = BIOS Date: 05/02/10 19:13:52 Ver: 08.00.10
    2011-11-23 19:29:25:011 120 9 d 4 report * Bios Version Date = 2011-06-27 T 00: 00:00
    2011-11-23 19:29:25:011 120 9 d 4 report * locale ID = 1031
    2011-11-23 19:29:25:026 120 9 d 4 wrote to success event to THE health state: 0
    2011-11-23 19:29:25:042 120 9 d 4 updates to THE initializing featured
    2011-11-23 19:29:25:042 120 9 d 4 to THE Found set 0 cached updates featured
    2011-11-23 19:29:25:042 120 9 d 4 wrote to success event to THE health state: 0
    2011-11-23 19:29:25:042 120 9 d 4 wrote to success event to THE health state: 0
    2011-11-23 19:29:25:042 120 9 d 4 to THE delayed finish initialization
    2011-11-23 19:29:30:049 120 684 CWERReporter finish event management report. (00000000)

    2011-11-23 19:45:56:873 a 120 11, 4 detection of THE shutter to THE via API DetectNow
    2011-11-23 19:45:56:873 a 120 11, 4 trigger detection online (interactive)
    2011-11-23 19:45:56:873 120 9 d 4 to THE #.
    2011-11-23 19:45:56:873 120 9 d 4 to THE # START # to THE: research updates
    2011-11-23 19:45:56:873 120 9 d 4 to THE #.
    2011-11-23 19:45:56:876 120 9 d 4 to THE<## submitted="" ##="" au:="" search="" for="" updates="" [callid="">
    2011-11-23 19:45:56:876 120 1340 Agent *.
    2011-11-23 19:45:56:876 120 1340 Agent * START * Agent: finding updates [CallerId = AutomaticUpdates]
    2011-11-23 19:45:56:876 120 1340 Agent *.
    2011-11-23 120 1340 Agent 19:45:56:876 * Online = Yes; Ignore download priority = No
    2011-11-23 19:45:56:876 120 1340 Agent * criteria = "IsInstalled = 0 and DeploymentAction = 'Installation' or IsPresent = 1 and DeploymentAction = 'Uninstall' or IsInstalled = 1 and 'Installation' and = 1 RebootRequired = DeploymentAction or IsInstalled = 0 and DeploymentAction = 'Uninstall' and RebootRequired = 1".
    2011-11-23 19:45:56:876 120 1340 Agent * ServiceID = {7971F918-A847-4430-9279-4A52D1EFE18D} third service
    2011-11-23 19:45:56:876 120 1340 Agent * scope of search = {Machine}
    2011-11-23 19:45:56:881 120 1340 Misc validation signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2011-11-23 19:45:56:906 120 1340 Misc Microsoft signed: Yes
    2011-11-23 19:45:56:948 120 1340 Misc validation signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2011-11-23 19:45:56:953 120 1340 Misc Microsoft signed: Yes
    2011-11-23 19:45:56:958 120 1340 Agent looking for updates auth cab for 7971f918-a847-4430-9279-4a52d1efe18d to http://download.windowsupdate.com/v9/microsoftupdate/redir/muauth.cab service
    2011-11-23 19:45:56:958 120 1340 Misc validation signature for C:\Windows\SoftwareDistribution\AuthCabs\authcab.cab:
    2011-11-23 19:45:56:963 120 1340 Misc Microsoft signed: Yes
    2011-11-23 19:45:56:991 120 1340 Misc validation signature for C:\Windows\SoftwareDistribution\AuthCabs\authcab.cab:
    2011-11-23 19:45:56:996 120 1340 Misc Microsoft signed: Yes
    2011-11-23 19:45:56:996 120 1340 Setup looking for agent SelfUpdate
    2011-11-23 19:45:56:996 120 version Setup Client 1340: Core: 7.5.7601.17514 to the: 7.5.7601.17514
    2011-11-23 19:45:56:998 120 1340 Misc validation signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2011-11-23 19:45:57:001 120 1340 Misc Microsoft signed: Yes
    2011-11-23 19:45:57:021 120 1340 Misc validation signature for C:\Windows\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2011-11-23 19:45:57:026 120 1340 Misc Microsoft signed: Yes
    2011-11-23 19:45:57:028 120 1340 Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2011-11-23 19:45:57:031 120 1340 Misc Microsoft signed: Yes
    2011-11-23 19:45:57:298 120 1340 Misc validation signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2011-11-23 19:45:57:303 120 1340 Misc Microsoft signed: Yes
    2011-11-23 19:45:57:303 120 1340 installation caution: SelfUpdate check failed download package information, error = 0x80070005
    2011-11-23 19:45:57:303 120 1340 Setup FATAL: SelfUpdate check failed, err = 0 x 80070005
    2011-11-23 19:45:57:303 120 1340 Agent * WARNING: jump scan, self-update check returned 0x80070005
    2011-11-23 19:45:57:323 120 1340 Agent * WARNING: exit code = 0x80070005
    2011-11-23 19:45:57:323 120 1340 Agent *.
    2011-11-23 19:45:57:326 120 1340 Agent * END * Agent: finding updates [CallerId = AutomaticUpdates]
    2011-11-23 19:45:57:326 120 1340 Agent *.
    2011-11-23 19:45:57:326 120 1340 Agent WARNING: customer WU didn't search for the update with error 0 x 80070005
    2011-11-23 19:45:57:326 120 d1c to THE > # RETURN # to THE: research updates [CallId = {97E55CEA-3A4F-4377-BC4E-BF133B65D5FD}]
    2011-11-23 19:45:57:326 120 d1c to # WARNING: reminder of search failed, result = 0x80070005
    2011-11-23 19:45:57:326 120 d1c to # WARNING: could not find the updates with the error code 80070005
    2011-11-23 19:45:57:326 120 d1c to THE #.
    2011-11-23 19:45:57:326 120 d1c to # END # in THE: research updates [CallId = {97E55CEA-3A4F-4377-BC4E-BF133B65D5FD}]
    2011-11-23 19:45:57:326 120 d1c to THE #.
    2011-11-23 19:45:57:326 120 at THE d1c successfully wrote event to THE health state: 0
    2011-11-23 19:45:57:326 120 d1c to THE timeout parameter next detection at 2011-11-23 23:45:57
    2011-11-23 19:45:57:326 120 d1c phase of installation to THE adjustment to THE planned 24 / 11 / 2011 02:00
    2011-11-23 19:45:57:326 120 at THE d1c successfully wrote event to THE health state: 0
    2011-11-23 19:45:57:326 120 at THE d1c successfully wrote event to THE health state: 0
    2011-11-23 19:46:02:303 120 1340 report REPORT EVENT: 2011-11-23 19:45:57:303 + 0100 1 148 101 {3FB4E0D0-2DFD-403C-B4D2-20AAC951DEA9} {D67661EB-2423-451D-BF5D-13199E37DF28} 1 80070005 SelfUpdate software failure synchronization Client Windows Update not found with error 0x80070005.
    2011-11-23 19:46:02:316 120 1340 report CWERReporter::HandleEvents - WER report upload completed with status 0 x 8
    2011-11-23 19:46:02:316 120 1340 WER sent report: 7.5.7601.17514 0x80070005 D67661EB-2423-451D-BF5D-13199E37DF28 Scan 101 unmanaged
    2011-11-23 19:46:02:316 120 CWERReporter 1340 finish event management report. (00000000)

    Given that is not able to find something and there are indications of parcel damaged, you can try an in Place Upgrade.

  • Windows Update goes to error 80070005 and don't plug or check for updates

    When I go to windows update it goes to the error code when attempting to check updates

    Sorry for not responding more early because I never received notification that you had posted the journal.

    Apparently, here it is what is causing the access denied error code:

    2011-06-02 23:33:33:956 1072 1568 Misc = process: C:\Program The Shield Deluxe\The shield 2011\vsserv.exe Deluxe
    2011-06-02 23:33:33:956 1072 1568 COMAPI - START - COMAPI: search [ClientId = BitDefender Scan Service]

    Then, the Service of Scan of BitDefender reports 2 updates are available, however, communication with servers update grave being stranded with an access denied message that seems to be caused by this specific "Scan Service.

    23:34:59:874 - 0400 1 147 101 {00000000-0000-0000-0000-000000000000} 0 0 BitDefender Scan Service success synchronization Windows Update Client software detected 2 updates successfully.

    2011-06-02 23:35:41:931 1300 1604 installation caution: SelfUpdate check failed download package information, error = 0x80070005
    2011-06-02 23:35:41:931 1300 1604 Setup FATAL: SelfUpdate check failed, err = 0 x 80070005
    2011-06-02 23:35:41:931 1300 1604 Agent * WARNING: jump scan, self-update check returned 0x80070005

    2011-06-02 23:35:18:127 1300 1604 report REPORT EVENT: 2011-06-02 23:35:13:120 - 0400 1 148 101 {8115F7F1-BDC9-42FE-AE4E-FCA22F8B2AB3} {D67661EB-2423-451D-BF5D-13199E37DF28} 1 80070005 SelfUpdate software failure synchronization Client Windows Update not found with error 0x80070005.

    See if the clean boot system configuration allows the system to communicate fully with the update servers - How to solve a problem by performing a boot in Windows Vista

    NOTE: In the clean boot state will be disabled all firewalls of part 3.
    Make sure that the native Windows Vista firewall is now on in the Panel after system restart to clean boot state.

    Once the system has been rebooted as a clean boot, open Windows Update and do a check of updates. If update functions now you know for some that BitDefender has generated the access denied message.
    However, it may have changed some system files or registry permissions and a clean boot will not solve these changes.

    If this solves the problem of update, cancel the clean boot configuration and restart the system to normal Windows mode.

    To speak frankly, suggest you contact BitDefender or use their forums to find out why this problem occurs - BitDefender Forum > Home and Home Office Protection

  • UCS C200 M2 R200 - 1120402W Nic will negotiate only 100 MB full

    We have a new UCS C200 M2 server running ESXi 5.0.0 and will be only neg a speed of 100 MB - tried to connect a GLC - T on a 3750 and also Port copper on 2960G - same result.

    Trying hard value speed 1000 in vSphere client produced an error:

    Call 'HostNetworkSystem.UpdatePhysicalNicLinkSpeed' to object 'networkSystem"on ESXi '172.19.99.103' failed.

    Operation failed, the diagnostic report: forcing 1000Mbps or faster may not be supported on this network device, please use autonegotiation call 'HostNetworkSystem.UpdatePhysicalNicLinkSpeed' to object 'networkSystem"on ESXi '172.19.99.103' failed.
    Operation failed, the diagnostic report: forcing 1000Mbps or faster may not be supported on this network device, use rather auto-negotiation

    Adapter is Intel 82576 Gigabit Network Connection

    Just use HUU to version 1.4 - no improvement.

    Thoughts, suggestions?

    Gordon,

    Can you please share the output of following ESXi

    VMware - v

    esxcfg-NICS - l

    ethool-i vmincX

    Do you see the same behavior with the other ports of the NETWORK adapter on the server?

    Padma

  • Do not uninstall the language on Windows 7 Ultimate pack

    I tried to upgrade to Windows 8 (my upgrade key is just for Windows 8, not Windows 8.1), but then it stops on a message windows Explorer (Yes, instead of display in the install window, it appears on IE which does not help me much) saying I can't go further if I uninstall all first language packs.

    So I did, but the Korean language pack fails to uninstall. It's the final result:

    I tried using the following commands, also without success:

    Lpksetup/u ko-KR/s

    DISM/Online/Remove-Package /packagename:Microsoft-Windows-Client-Refresh-LanguagePack-Package~31bf3856ad364e35~amd64~ko-KR~6.1.7601.175146.1.7601.17514

    That's what I get from the windows event log "setup" on the event viewer:


     
       
        3
        0
        0
        0
        0
        0 x 8000000000000000
       
        3038
       
       
        Setup
        Rodrigo-PC
       
     

     
       
          SP1 Language Pack
          Absent
          0x80070005
          Lpksetup
       

     

    And that's what I have on CBS.log:

    2014-03-17 11:49:32, error CSI 00000fac@2014/3/17:14:49:32.896 (F) d:\win7sp1_gdr\base\wcp\sil\merged\ntu\ntsystem.cpp(703): native STATUS_ACCESS_DENIED error of the function WorkAroundBackupIntentForFilesystem expression: TmpStatus
    [gle = 0 x 80004005]
    2014-03-17 12:00:29, error CSI 00000fad (F) STATUS_ACCESS_DENIED #4656311 # to Windows::Rtl:SystemImplementation:DirectFileSystemProvider:SysCreateFile(flags_=_0,_handle_=_{provider=,_handle=0},_da_=_(FILE_GENERIC_READ|)) FILE_WRITE_ATTRIBUTES | FILE_WRITE_EA | FILE_APPEND_DATA | FILE_WRITE_DATA), oa = @0x1c9d8c8--> OBJECT_ATTRIBUTES {s:48, rd:, on:[83]"\SystemRoot\WinSxS\Temp\PendingRenames\e88f5439ed41cf01fa0300009c04641b.desktop.ini"; a: (OBJ_CASE_INSENSITIVE);} SD:@0x10475880}, iosb = @0x1c9d910, ACE = 524 (0x000000000000020c), f = 0 x 00000027, his = (FILE_SHARE_READ |) FILE_SHARE_WRITE. FILE_SHARE_DELETE), d = FILE_OPEN_IF, co = (FILE_NON_DIRECTORY_FILE |) FILE_SYNCHRONOUS_IO_NONALERT | (0 x 00004000), eab = NULL, eal = 0, disp = (null))
    [gle = 0xd0000022]
    2014-03-17 12:00:29, error CSI 00000fae@2014/3/17:15:00:29.486 (F) d:\win7sp1_gdr\base\wcp\sil\merged\ntu\ntsystem.cpp(2062): native STATUS_ACCESS_DENIED error of the function expression Windows::Rtl:SystemImplementation:DirectFileSystemProvider:SysCreateFile: (null)
    [gle = 0 x 80004005]
    2014-03-17 12:11:46, error CSI STATUS_ACCESS_DENIED (F) #4656310 00000faf # to Windows::Rtl:SystemImplementation:CIniFile_IRtlIniFileTearoff: Commit (...) [gle = 0xd0000022]
    2014-03-17 12:11:46, error CSI STATUS_ACCESS_DENIED (F) #4628031 00000fb0 # to PrimitiveInstaller::CCoordinator:FinalizeChanges (...) [gle = 0xd0000022]
    2014-03-17 12:11:46, error CSI STATUS_ACCESS_DENIED (F) #4353012 00000fb1 # to CCSDirectTransaction::PerformChangeAnalysis (...) [gle = 0xd0000022]
    2014-03-17 12:11:46, error CSI STATUS_ACCESS_DENIED (F) #4353011 00000fb2 # to CCSDirectTransaction::PrepareForCommit (...) [gle = 0xd0000022]
    2014-03-17 12:11:46, error CSI STATUS_ACCESS_DENIED (F) #4353010 00000fb3 # to CCSDirectTransaction::GenerateComponentChangeList (...) [gle = 0xd0000022]
    2014-03-17 12:11:46, error CSI STATUS_ACCESS_DENIED (F) #4353009 00000fb4 # to Windows::COM:CPendingTransaction:ExtractInformationFromRtlTransaction (...) [gle = 0xd0000022]
    2014-03-17 12:11:46, error CSI 00000fb5 (F) HRESULT_FROM_WIN32 (ERROR_ACCESS_DENIED) #1492897 # to Windows::COM:CPendingTransaction:IStorePendingTransaction_Analyze (...) [gle = 0 x 80070005]
    2014-03-17 12:11:46, error CSI 00000fb6 (F) HRESULT_FROM_WIN32 (ERROR_ACCESS_DENIED) #1471382 # Windows::ServicingAPI:CCSITransaction:ICSITransaction_Commit(Flags_=_47_(0x0000002f), pSink = NULL, disp = 0, coldpatching = FALSE) [gle = 0 x 80070005]
    2014-03-17 12:11:46, error CSI 00000fb7 (F) HRESULT_FROM_WIN32 (ERROR_ACCESS_DENIED) # 3808619413 #1471381 by Windows::ServicingAPI:CCSITransaction_ICSITransaction:Commit(flags_=_0x0000002f,_pSink_=_NULL,_disp_=_0)
    [gle = 0 x 80070005]
    2014-03-17 12:11:46, info CBS setting ExecuteState key: ExecuteStateNone
    2014-03-17 12:11:46, Pavilion Info CBS RollbackFailed setting to 0
    2014-03-17 12:11:46, info CBS Clearing HangDetect value
    2014-03-17 12:11:46, CBS info saved last overall progress. Current: 0, limit: 1, ExecuteState: ExecuteStateNone
    2014-03-17 12:11:46, CBS Exec info: restore operations because of a CSI pilot commit failure.
    2014-03-17 12:11:46, error CBS Exec: impossible transaction CSI hangs because transactions cannot be merged: 0 [HRESULT = 0x80070005 - E_ACCESSDENIED]
    2014-03-17 12:11:46, 00000fb8@2014/3/17:15:11:46.356 CSI CSI Transaction Info @ destroyed 0x6a2b4b0
    2014-03-17 12:11:46, CBS Perf info: all InstallUninstallChain.
    2014-03-17 12:11:46, info CBS cannot run the chain of execution. [HRESULT = 0 X 80070005 - E_ACCESSDENIED]
    2014-03-17 12:11:46, error CBS could not process the single-phase execution. [HRESULT = 0 X 80070005 - E_ACCESSDENIED]
    2014-03-17 12:11:46, CBS WER info: generate report of failure for the package: Microsoft-Windows-Client-Refresh-LanguagePack-Package~31bf3856ad364e35~amd64~ko-KR~6.1.7601.17514, State: 0x80070005, source of failure: Execute, begin State: installed, target State: Absent, client id: lpksetup
    2014-03-17 12:11:46, CBS News has no query DisableWerReporting hint.  Assuming not only together... [HRESULT = 0 X 80070002 - ERROR_FILE_NOT_FOUND]
    2014-03-17 12:11:46, could CBS info add %windir%\winsxs\pending.xml to the WER report because it is absent.  Continue without her...
    2014-03-17 12:11:46, could CBS info add %windir%\winsxs\pending.xml.bad to the WER report because it is absent.  Continue without her...
    2014-03-17 12:22:27, CBS Reboot info brand Refs: 0
    2014-03-17 12:22:27, info CBS M²: Reporting change of package for the package: Microsoft-Windows-Client-Refresh-LanguagePack-Package~31bf3856ad364e35~amd64~ko-KR~6.1.7601.17514, current: installed, pending: default, start: installed, it is necessary: installed, target: Absent, limit: Absent, /hotpatch status: DisabledBecauseNoHotpatchPackagesInitiated, status: 0x0, source of failure: run, restart required: false, client id: lpksetup launched offline: False, execution sequence: 1720, merged first sequence : 1720
    2014-03-17 12:22:27, CBS M² info: Upload asked to report: PackageChangeBegin_Microsoft-Windows-Client-Refresh-LanguagePack-Package~31bf3856ad364e35~amd64~ko-KR~6.1.7601.17514, session id: 142859, sample type: Standard
    2014-03-17 12:22:27, CBS M² info: ignorant download request because the sample type is not enabled: Standard
    2014-03-17 12:22:27, CBS M² info: Reporting change completion for package package: Microsoft-Windows-Client-Refresh-LanguagePack-Package~31bf3856ad364e35~amd64~ko-KR~6.1.7601.17514, current: installed, original: installed, target: Absent, status: 0x80070005, source of failure: run, details of the failure: "(null)", client id: lpksetup launched offline: false, execution sequence: 1720, merged first sequence: 1720
    2014-03-17 12:22:27, CBS M² info: run time performance datapoint is not valid. [HRESULT = 0 X 80070490 - ERROR_NOT_FOUND]
    2014-03-17 12:22:27, CBS M² info: Upload asked to report: PackageChangeEnd_Microsoft-Windows-Client-Refresh-LanguagePack-Package~31bf3856ad364e35~amd64~ko-KR~6.1.7601.17514, session id: 142862, sample type: Standard
    2014-03-17 12:22:27, CBS M² info: ignorant download request because the sample type is not enabled: Standard
    2014-03-17 12:22:27, the start option Info CBS to LKG
    2014-03-17 12:22:27, CBS Exec info: end: nested restore point - full.
    2014-03-17 12:22:27, the State of the information CBS block restored system sleep: 0x80000000
    2014-03-17 12:22:28, CBS Exec info: complete treatment.  Session: 30360044_3010381984, package: Microsoft-Windows-Client-Refresh-LanguagePack-Package~31bf3856ad364e35~amd64~ko-KR~6.1.7601.17514 [HRESULT = 0x80070005 - E_ACCESSDENIED]
    2014-03-17 12:22:28, error CBS could not perform the operation.  [HRESULT = 0 X 80070005 - E_ACCESSDENIED]
    2014-03-17 12:22:28, CBS Session info: 30360044_3010381984 finalized. Reboot required: no [HRESULT = 0x80070005 - E_ACCESSDENIED]

    I can't do a clean install on this system, this is why I really need to find a way to do it.

    I cannot even delete all files. If I could just 'put' all information registry for "Absent" again for this Korean package would be nice.

    Any help is welcome.

    Call
    Send SMS
    Add to Skype
    You will need Skype CreditFree via Skype

    OK, I found the solution and finally managed to remove the language pack and also install Windows 8! :)

    The CBS.log newspaper above, I decided to intentionally remove the file that was put to fire the error "Access denied". Then rerun the uninstallation, another file pulled the same mistake... but the CBS.log newspaper accused the first file is not found, so it would be completely ignored the "restoration" of the package file.

    So I realized that it was the uninstall was done: trying to do a "System Restore" 2 years ago. The file may be corrupted or would be too old for this... anyway, it doesn't matter. Since I knew he was trying to restore, I ran the Windows system cleaning and remove EVERYTHING, including the restore points "Service Packs" (by the way, that made me almost 7 GB of extra space!).

    Then I restarted the computer and was able to remove the package!

  • Query a Table only once

    Hello

    I have an obligation to appoint all transactions in a store except inversions. So I wrote the query as follows

    with trn as
    ( select 1 t_key, 1 invoice#, 'A' Client, 'P1' Product, 'N' reversal from dual
     union all
    select 2 t_key, 2 invoice#, 'B' Client, 'P1' Product, 'N' reversal from dual
    union all
    select 3 t_key, 3 invoice#, 'C' Client, 'P1' Product, 'N' reversal from dual
    union all
    select 4 t_key, 3 invoice#, 'C' Client, 'P1' Product, 'Y' reversal from dual
    ), rev_t as
    (select distinct invoice# from trn where reversal = 'Y')
    select * from trn
    where not exists (select 'x' from rev_t where rev_t.invoice# = trn.invoice#);
    
    

    But in the real world scenario I table of 120 million transactions. If you notice that I consulted trn table 2 times - once in rev_t and the other in the main query. This causes a problem of enormous performance for me. Could you please suggest better otherwise if while accessing to trn don't table only once.

    Use Analytics:

    with NRT as)

    Select 1 t_key, 1 invoice #, 'A' customer, the product "P1", "n" everyone inversion the double union

    Select 2-t_key, 2 invoice #, Client "B", "P1" product, inversion of "n" of all the double union

    Select 3-t_key, 3 invoice #, customer 'C', 'P1' product, inversion of "n" of all the double union

    Select 4 t_key, 3 invoice #, 'C' Client, produces 'P1', 'Y' reversal of the double

    ),

    rev_t like)

    Select trn.*,

    Max (case inversion when 'Y' then 1 else 0 end) on y_flag (partition of invoice #)

    NRT

    )

    Select t_key,

    Invoice #.

    customer,

    product,

    reversal

    of rev_t

    where y_flag = 0

    /

    T_KEY INVOICE # C PR R
    ---------- ---------- - -- -
    1 1 N P1
    2 2 N P1

    SQL >

    And if the reversal can be only Y/N or null:

    with NRT as)

    Select 1 t_key, 1 invoice #, 'A' customer, the product "P1", "n" everyone inversion the double union

    Select 2-t_key, 2 invoice #, Client "B", "P1" product, inversion of "n" of all the double union

    Select 3-t_key, 3 invoice #, customer 'C', 'P1' product, inversion of "n" of all the double union

    Select 4 t_key, 3 invoice #, 'C' Client, produces 'P1', 'Y' reversal of the double

    ),

    rev_t like)

    Select trn.*,

    Max (Reversal) on y_flag (partition of invoice #)

    NRT

    )

    Select t_key,

    Invoice #.

    customer,

    product,

    reversal

    of rev_t

    where y_flag = ' don't

    /

    SY.

  • Download images (sensitive dimensions) of sizing

    Just wondering what people are instruct their clients to do these days in consider that to image download of dimensions to meet sensitive situations.

    I think that they need not any narrower than 700px - 800px wide - seems huge, BUT given that the image may need to accommodate a variety of column, office, Tablet and smartphone - browser widths makes this sound realistic?

    I can't have a client produce 3 images of sizes for every situation - so one size fits all I think.

    See you soon

    Operating system.

    For most of the objectives that look always good on iPads, I use 400 to 600. For banners full width, I use 1200 with 768 substitutes for smaller devices.

    Nancy O.

Maybe you are looking for

  • 7 iPhone

    Hello I ordered a 7 Apple more and I still don't understand, but the thing is there are some rumors I dnt know if it's true or not, I have heard that the iphone is explod as samsung Note7 can you please help me on this issue because my order is on th

  • Units media center is always available on current HP desktop computers?

    I don't see this option for all desktop computers. This feature disappeared new offers?

  • How do I display the product key number b & use to activate Windows 7?

    I got the qa message on my Dell laptop. Windows 7 Edition Home Premium that I had to activate my Windows using my product key. I wore my glasses to 20-20 & used my magnifying glass & writing down the product key.                     I checked the # 3

  • ENVY 15 t-K000 CTO: ENVY 15 t-K000 CTO support M.2 ssd?

    My laptop is ENVY 15 t-K000 CTO, model number is G0T55AV, the material information is as follows: CPU i7-4710HQ 16GB memory HARD DRIVE 1 TB I want to add an ssd for my laptop, I wonder if my laptop supports m2 type SSD, and, if the answer is Yes, wha

  • BlackBerry smartphones can not hear this ring thing

    I've had my blackberry "BOLD" now since may, and I can't hear that thing ring when I get incoming calls... I tried like almost all of the ringtones on my phone, and even to the low load and I'm ready to smash this thing with a hammer! I contacted a s