Error creating a directory while downloading

I installed this the first time fine, but it wouldn't recognize my itouch, so i uninstalled all of apples programs from my computer and reinstalled, then got the error:
"An error occurred while attempting to create the directory: C:\Program Files\Common Files\Apple\Mobile Device Support\in\AppleMobileDeviceHelper.app"
When I continue past this by canceling, i get similar errors with different variations under the program file directory writing, and when i try to install a previous version, I get this as well.
Any help/ideas would be great.
Message was edited by: Verrexis

Same exact problem for me. Reported it 9/24/09. Have not tried deleting the fonts. May try it if I'm not using them for something else. This is rediculious. There's a million reports of this problem out there with all sorts of Operating Systems and no one will fix it.

Similar Messages

  • Error creating home directory - Access is denied.

    Hi,
    I am getting one issue on the task while provisioning homedrive and homedirectory on AD resource.
    Error creating home directory '\\rusehf06\home\rc9782rf': ': Access is denied
    Please help. Thanks in advance.

    These error messages are typically pretty obvious with permission errors. It's getting the correct permissions that is the challenge. I would suggest you start by adding the user whom is in your IT Resource for Active Directory into the local administrators group for the server you are trying to create the folder on. Also, consult with your AD Admins to get it resolved the quickest most likely. Their skill set will be better than what we can provide.
    -Kevin

  • Update Vault Error:  Errors creating a directory in vault "date".

    I updated my Aperture vault in December.
    When I tried to update it again this morning I get the message *Update Vault Error: Errors creating a directory in vault "date".* In one instance it says 15 errors occurred. In another it says 219 errors occurred.
    Other than delete the current vault and re-create it, are there any suggestions as to a fix for this problem?
    Jerry

    I have noticed the following:
    + While I cannot update an existing vault, I can create a new vault on the same folder/disk. For my purposes, I will probably use this vault and delete my old vault that I can no longer update.
    + The last time that I successfully updated one of my existing vaults was 4 days ago. Since then, I accidentally blew-away my preferences and subsequently restored them from backup... but the restored preferences predated the current Aperture library.
    Perhaps there is something in the Preferences ( <user>/Library/Preferences/com.apple.* ) that retains some state about the state of recent vaults. I haven't looked. Perhaps the status of my Aperture Library was out of sync with my restored preference files.
    Anybody with this problem have a similar situation?

  • File Adapter - Error creating archive directory adapter file

    Hello,
    I've a interfase File to RFC. In sender CC i have Archive Directory.
    It occurs the follow error:
    Error creating archive directory adapter file
    The archive directory exists.
    any idea?
    thanks very much

    Hi Silvia,
    Check whether the user you are using for FTPing is having proper authorizations.
    Also, verify whether you have the archive directory in place.
    Regards,
    Neetesh

  • Error creating IP directory, probably because of invalid windows folder

     
    Hi all,
    after doing just one of the first steps of the first tutorial for my zynq eval board - I invoked a zynq processing system ip core - I already got an error message:
    [IP_Flow 19-1671] Failed to create IP instance 'aximm_temp'. Error creating IP directory 'c:/Users/franl/AppData/Roaming/Xilinx/Vivado/.Xil/Vivado-5680-franl-??/coregen/aximm_temp'.
    Beware the two question marks in the path name. Unfortunately I haven't found anything similar on the internet or in a forum. Neither did I find a way to get rid of the question marks. Has anybody a solution for that?
    Best regards, Frank

    Hi everybody,
    finally I've solved the problem: Xilinx seems to create a temp file folder that contains the name of the computer. The name of my computer contains latin and cyrillic characters: frank-пк. Vivado replaced the cyrillic characters with questionmarks: frank-?? and tries to create a folder with that name, which of course is impossible on windows machines. After changing the name of my computer to "frank" everything was ok.
    Thanks anyways for the help!
    Best regards,
        Frank

  • TS1424 i had an error on one song while downloading an album how can i get that song

    I had an error (i dont remember the number) on one song while downloading an album how can i get that song to download?

    It may be a corrupt / damaged download.
    If you live in a Region that allows re-downloading Music...
    Delete the Song(s) and re-download...
    See Here  >  Download Past Purchases  >  http://support.apple.com/kb/HT2519
    If not... Contact iTunes Customer Service  >  Apple  Support  iTunes Store  Contact Us

  • Csbackup error creating backup directory

    Hi All,
    We are running Messaging Server: Sun Java(tm) System Messaging Server 6.3-4.01 libimta.so 6.3-4.01 on SunOS 5.10
    When we using ./csbackup -f database backup, it gives the following error.
    Error creating directory backup
    Backup failed
    We tried manually creating backup directory in calendar_base/csdb/ . Verbose mode does not give any more info. Tried without -f option also. Also tried csbackup after stop-cal and start-cal. Still same error
    What should we check to find out the problem . Thanks in advance
    Cheers Suru

    suru74 wrote:
    When we using ./csbackup -f database backup, it gives the following error.
    Error creating directory backup
    Backup failedGiven that you are running the command in the <calendar_base>/sbin directory, the above command is actually trying to create the directory <calendar_base>/sbin/backup. As the csbackup command runs as the icsuser this doesn't have sufficient permissions to create the directory and fails.
    Try explicitly specifying the directory path e.g.
    ./csbackup -f database /tmp/backup/
    Regards,
    Shane.

  • Error in PDF Conversion while downloading file from application server

    Hi,
    I am facing a problem in which i have to download file from application server which is a PDF file (output of SAP Script). I am downloading this file using following code in BSP technology:
    * event handler for data retrieval
    EMPCD = REQUEST->GET_FORM_FIELD( 'emp' ).
    MONTH = REQUEST->GET_FORM_FIELD( 'mn' ).
    YEAR  = REQUEST->GET_FORM_FIELD( 'yr' ).
    W_IND = 'N' .
    DATA : wa_zform16 type  zform16.
    DATA : file_path type string.
    DATA : l_pdf_len type string.
    DATA STR TYPE STRING.
    DATA: OUTPUT    TYPE STRING ,
          L_XSTRING TYPE XSTRING ,
          APP_TYPE  TYPE STRING.
    DATA: PDF_TABLE TYPE  RCL_BAG_TLINE.
    DATA PHY_NAME_OUT     TYPE SAPB-SAPPFAD.
    concatenate '/usr/sap/put/form16/' EMPCD '_' YEAR '.PDF'  into file_path
    *PHY_NAME_OUT = '/usr/sap/put/form16/01000200_2007.PDF'.
    PHY_NAME_OUT = file_path.
    OPEN DATASET PHY_NAME_OUT FOR INPUT IN TEXT MODE ENCODING default.
    IF SY-SUBRC IS INITIAL.
      DO.
        READ DATASET PHY_NAME_OUT INTO STR.
        IF SY-SUBRC IS INITIAL.
          CONCATENATE
              OUTPUT
              STR
              CL_ABAP_CHAR_UTILITIES=>CR_LF
          INTO OUTPUT.
        ELSE.
          EXIT.
        ENDIF.
      ENDDO.
      APP_TYPE = 'APPLICATION/PDF'.
      CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
        EXPORTING
          TEXT     = OUTPUT
                MIMETYPE = 'APPLICATION/PDF'
    *            MIMETYPE = 'APPLICATION/PDF;charset=utf-16le'
        IMPORTING
          BUFFER   = L_XSTRING.
      CALL METHOD CL_BSP_UTILITY=>DOWNLOAD
        EXPORTING
          OBJECT_S            = L_XSTRING
          CONTENT_TYPE        = APP_TYPE
          CONTENT_DISPOSITION = 'attachment;filename=webforms.pdf'
          RESPONSE            = _M_RESPONSE
          NAVIGATION          = NAVIGATION.
    Result of this code is : there is a pop up asking to open or save pdf format and process is complete, but i have problem in downloaded file.
    At the time of creation i have put BMP image for signature in PDF file and it is working fine but when i upload that file in Application server and then download it with above used code it save the PDF file but when i open that file so whereever i have used signature that page gives error and could not display that scanned signature.
    Can anyone please help me in this regard.
    or is there any possibility from which i can download that file just like File transfer from BSP.
    Keep in mind that i am using BSP technology so all GUI based function module to download file are not working.
    waiting for your reply.....
    Regards,
    Gagan

    Hi Raja,
    I have standard sap form for TDS Certificate on which i have include an BMP image for digital signature and download that script into pdf format.While i download that PDF looks ok but it is not working in BSP.
    Regards,
    Gagan

  • Error -5000 and -3253 while downloading

    i just bought the Beatles box set
    it is composed of songs, videos and LPs
    on most of the LP (read here most not all) i have the error -5000
    and on 2 videos i have error -3253
    from what i have understood error -5000 if a problem with access permissions on my computer
    if so why some LP have been correctly downloaded and others don't?
    and what is error -3253?

    I just spent over an hour on the phone and working through Remote Advisor w/an Apple Technician (AT) going through a plethora of troubleshooting items - all to no avail.
    The AT did provide me with his/her specific contact information and promised to get back to me with an update within 24-hours.  Although there is no resolution at this time, I do at least have the comfort knowing that this issue has indeed been forwarded to the Engineering team for them to review and address.
    I just hope that this is resolved sooner rather than later.
    And as an FYI I did suggest that they check out the Community Forums to get better understanding that this is not an issue specific to me alone but to a much broader group.

  • Error in date format while downloading it into excel

    Hi Experts,
    I created a report and when i download date from report to excel the date format is getting reversed.
    FOR example   Date in REPORT : 07//2010
                                        IN EXCEL: 201007
    Kindly give some idea to resolve this issue.
    Regards,
    Vishwa

    hello,
    Please change the data type of date field to Character (C).
    and pass the required date value.
    It shouldl make correct output to excel...
    Thanks.

  • Error creating backup directory

    Anyone getting this error and figured out how to fix it?
    I tried reformatting the hard drive, but Time Machine keeps on generating this error.

    gaigeb wrote:
    I'm seeing the error as well on my MacPro. The situation is a bit different here, because I was able to "solve" the problem.
    It turns out that I have a number of drives and one of them that was mounted when I first did my TM backup is always unmounted when TM fails with this error, so I did an experiment-- I mounted the drive, did the TM backup, unmounted it, tried it again, and then repeated.
    Whenever the drive was mounted, the backup worked. Whenever it wasn't, it failed.
    I haven't tried tossing my TM settings, but I'm thinking there might be some reference to the drive that needs to be "resolved".
    It is on my list of excluded devices, so maybe there's an alias or something there.
    Hope this adds some more info to the discussion!
    -Gaige
    I can confirm this is the solution. I had a USB drive connected to my computer when I set up Time Machine's drive on another Firewire drive. When the USB drive is not connected I get a "failure to set up directory structure on the drive" message, even though that drive is not involved in the backup (I even set the preference to ignore it for backup through Time Machine). When the USB drive is connected, Time Machine is happy and I get no failure message.
    This should be fixed, but the workaround is to plug back the drive(s) that were present during the initial setup (or better yet, unplug any other drive during the initial setup of Time Machine).

  • I encountered error message A12E6 while downloading CC suite

    I enclountered an error message A12E6 code while downloading the Photoshop softwre.  Has anyone had this problem before.
    I find it a little bit difficult navagting the customer support resolving it.

    Hi Sui-Te Wu,
    Please refer the thread: http://forums.adobe.com/message/5259577#5259577#5259577.
    Regards,
    Romit Sinha

  • An error occurred while attempting to create the directory: C:\ProgramData\microsoft\windows\start Menu

    Itunes update 10.5.2.11 for windows 7 (64 bit) keeps crashing at this point...
    "an error occurred while attempting to create the directory: C:\ProgramData\microsoft\windows\start Menu"
    I have read all of the forums to no avail. Seems like a common problem.
    Has anyone had the same issue and actually solved it?

    I'm getting this problem too. I have been running iTunes for a few years with no problems until recently. WHenever I try and open it I get an error message saying "An error occured while attmpting to create the directory: I:\iTunes\iTunes.Resources\de.lproj\EQWindow.nib" with the options to retry or cancel. Retry just results in the same error message occuring again.
    I've tried other programs on the I: drive and they work fine, I've also followed the 'Removing iTunes Configuration Files' and some of the other apple support guides with no success. My windows updates are fine.
    Any suggestions?

  • Win 7 / System Update 4 "An error occurred while downloading packages" Please review LOG?

    Team Lenovo,
    I am having problem with TVSU 4.0 on a Windows 7 64 bit system where it gets to about 17-18% and consistently gives me "An error occurred while downloading packages"
    I've made sure no firewalls are active.  Am not using an Proxy servers and have turned off "automatically detect settings" in Internet Options.  I've tried to uninstall and reinstall and no change.  I've also tried to run as an Administrator and no luck either.
    I reviewed the logs that are located at:
    C:\Program Files (x86)\Lenovo\System Update\logs
    I've highlighted in BOLD the entries below I feel may be the issue, but not sure how to resolve it.  I did notice download.lenovo.com link when I try to reach it directly shows file not found???
    [ThinkVantage System Update build: 2009-10-19 4.00.0024]    2/5/2011 4:13:45 PM
    Info    2011-02-05 , 04:13:45
        at Tvsu.Environment.EnvironmentManager..ctor()
        Message: Starting Environment Manager...
    Info    2011-02-05 , 04:13:45
        at Tvsu.Nls.NlsResources..ctor()
        Message:
    The active language is: EN
    The default language is: EN
    The OS language is: EN
    The language loaded type is: OS
    Severe    2011-02-05 , 04:13:45
        at Tvsu.Sdk.SuSdk.StartApplication()
        Message: Application runs with the framework: 2.0.50727.4952
    Info    2011-02-05 , 04:13:45
        at Tvsu.Engine.DataBase.InitializeDataBase()
        Message: Initializing the DataBase from file: updates.ser
    Warning    2011-02-05 , 04:13:45
        at Tvsu.Gui.Util.Tools.get_SystemVendor()
        Message: The vendor was resolved to THINK
    Info    2011-02-05 , 04:14:11
        at Tvsu.ConnectionSettings.ConnectionSettings.GetConnectionForURL(String url)
        Message: Creating a new Connection Settings Bean instance to Host: download.lenovo.com
    Info    2011-02-05 , 04:14:11
        at Tvt.ConnectionSettings.ConnectionSettings.GetConnectionForURL(String url)
        Message: Direct connection found
    Info    2011-02-05 , 04:14:11
        at Tvsu.FileDownloader.HttpsDownload.GetProxy(ConnectionSettingsBean connBean)
        Message: Connection type set to DIRECT in ConnectionSettingsBean
    Info    2011-02-05 , 04:14:11
        at Tvsu.Engine.Task.Task.Start()
        Message: The current process is:HelloProcess
    Info    2011-02-05 , 04:14:11
        at Tvsu.Engine.Task.Task.Start()
        Message: Executing the PreProcess HelloProcess
    Info    2011-02-05 , 04:14:11
        at Tvsu.Engine.Task.Task.Start()
        Message: Executing the StartProcess HelloProcess
    Info    2011-02-05 , 04:14:11
        at Tvsu.Engine.Process.HelloProcess.DownloadHelpFile()
        Message: The chm help file is already present in the system
    Info    2011-02-05 , 04:14:11
        at Tvsu.Engine.Process.HelloProcess.Start()
        Message: The test.properties file was not found, the normal Hello process will continue.
    Info    2011-02-05 , 04:14:11
        at Tvsu.Engine.Process.HelloProcess.Start()
        Message: HelloProcess Started
    Info    2011-02-05 , 04:14:11
        at Tvsu.Engine.Process.HelloProcess.Start()
        Message: Client level: HelloLevel_8_05_80
    Info    2011-02-05 , 04:14:11
        at Tvsu.Engine.Process.HelloProcess.DownloadUDF(String helloClientLevel)
        Message: The UDF will be downloaded from: https://download.lenovo.com/ibmdl/pub/pc/pccbbs/agent/SSClientCommon/HelloLevel_8_05_80.xml
    Info    2011-02-05 , 04:14:11
        at Tvsu.Engine.Process.HelloProcess.DownloadUDF(String helloClientLevel)
        Message: The UDF will be downloaded to-> C:\Program Files (x86)\Lenovo\System Update\session\system\SSClientCommon\HelloLevel_8_05_80.xml
    Info    2011-02-05 , 04:14:11
        at Tvsu.ConnectionSettings.ConnectionSettings.GetConnectionForURL(String url)
        Message: Connection settings bean found for download.lenovo.com
    Info    2011-02-05 , 04:14:11
        at Tvsu.FileDownloader.HttpsDownload.GetProxy(ConnectionSettingsBean connBean)
        Message: Connection type set to DIRECT in ConnectionSettingsBean
    Info    2011-02-05 , 04:14:11
        at Tvsu.Engine.Process.HelloProcess.Start()
        Message: UDF download status is -> Failed
    Severe    2011-02-05 , 04:14:11
        at Tvsu.Engine.Process.HelloProcess.Start()
        Message: Could't connect to the HelloServer, no UDF file was downloaded
    Info    2011-02-05 , 04:14:11
        at Tvsu.Egather.EgatherManager.GetEgatherParser(String type)
        Message: Running egather minimal.....
    Info    2011-02-05 , 04:14:11
        at Tvsu.Gui.CustomComponents.Step.set_Image(StepImage value)
        Message: Setting PROCESSING status.
    Info    2011-02-05 , 04:14:11
        at Tvsu.Egather.EgatherExecutor.RunAsWindowsService(String directory, String command, String arguments)
        Message:  /execute ia.exe /arguments -filename"""C:\Program Files (x86)\Lenovo\System Update\egather\sysrecomin""" -probes REGIONAL_SETTINGS GATHERER_INFORMATION SYSTEM_SUMMARY -local /directory C:\Program Files (x86)\Lenovo\System Update\egather\ /type COMMAND /timeout 300000
    Info    2011-02-05 , 04:14:11
        at Tvsu.Egather.EgatherExecutor.RunAsWindowsService(String directory, String command, String arguments)
        Message: FileName Path: C:\Program Files (x86)\Lenovo\System Update\TvsuCommandLauncher.exe
    Info    2011-02-05 , 04:14:14
        at Tvsu.Egather.EgatherExecutor.ExecuteEgather(String fileOutput, String args)
        Message: RC eGatherer: 0
    Info    2011-02-05 , 04:14:14
        at Tvsu.Engine.Process.HelloProcess.Start()
        Message: MTM received from eGather: 4389AB8
    Info    2011-02-05 , 04:14:14
        at Tvsu.Engine.Process.HelloProcess.Start()
        Message: Data to be set in the Environment Manager to use with Quest:
    QOS (Quest OS): Windows 7
    QOSLang (Quest language): EN
    MTM: 4389AB8
    Info    2011-02-05 , 04:14:14
        at Tvsu.Engine.Task.Task.Start()
        Message: Executing the PostProcess HelloProcess
    Info    2011-02-05 , 04:14:14
        at Tvsu.Engine.Task.Task.Start()
        Message: The process HelloProcesshas been finished.
    Info    2011-02-05 , 04:14:14
        at Tvsu.Engine.Task.Task.StartExecution()
        Message: PostTask
    Info    2011-02-05 , 04:14:14
        at Tvsu.Sdk.SuSdk.GetSystemProperties()
        Message: Return the System Properties
    Info    2011-02-05 , 04:14:14
        at Tvsu.Sdk.SuSdk.GetApplicableUpdates(searchingFolderDelegate spd, showErrMsgDelegate sed)
        Message: Get Applicable Updates
    Info    2011-02-05 , 04:14:14
        at Tvsu.Engine.Task.Task.Start()
        Message: The current process is:HelpCenterQuestProcess
    Info    2011-02-05 , 04:14:14
        at Tvsu.Engine.Task.Task.Start()
        Message: Executing the PreProcess HelpCenterQuestProcess
    Info    2011-02-05 , 04:14:14
        at Tvsu.Gui.CustomComponents.Step.set_Image(StepImage value)
        Message: Setting DONE status.
    Info    2011-02-05 , 04:14:14
        at Tvsu.Gui.CustomComponents.Step.set_Image(StepImage value)
        Message: Setting PROCESSING status.
    Info    2011-02-05 , 04:14:19
        at Tvsu.ConnectionSettings.ConnectionSettings.GetConnectionForURL(String url)
        Message: Creating a new Connection Settings Bean instance to Host: www-03.ibm.com
    Info    2011-02-05 , 04:14:19
        at Tvt.ConnectionSettings.ConnectionSettings.GetConnectionForURL(String url)
        Message: Direct connection found
    Info    2011-02-05 , 04:14:19
        at Tvsu.Engine.Task.Task.Start()
        Message: Executing the StartProcess HelpCenterQuestProcess
    Info    2011-02-05 , 04:14:19
        at Tvsu.Engine.Process.HelpCenterQuestProcess.LaunchEgather()
        Message: Launching Egather
    Info    2011-02-05 , 04:14:19
        at Tvsu.Egather.EgatherManager.GetEgatherParser(String type)
        Message: Running egather complete.....
    Info    2011-02-05 , 04:14:19
        at Tvsu.Engine.Process.HelpCenterQuestProcess.LaunchHelpCenterProcess()
        Message: Launching HelpCenter
    Info    2011-02-05 , 04:14:19
        at Tvsu.Egather.EgatherExecutor.RunAsWindowsService(String directory, String command, String arguments)
        Message:  /execute ia.exe /arguments -filename"""C:\Program Files (x86)\Lenovo\System Update\egather\sysreco""" -silent -local -section SYSTEM_SUMMARY REGIONAL_SETTINGS SMBIOS_INFORMATION Firmware_Information Installed_Software SMBIOS_INFORMATION DEVICE_DRIVERS_AND_SERVICES IDE_DEVICE_INFORMATION DEVICE_MANAGER_SETTINGS -p device_manager enable_hardwareid /directory C:\Program Files (x86)\Lenovo\System Update\egather\ /type COMMAND /timeout 300000
    Info    2011-02-05 , 04:14:19
        at Tvsu.Egather.EgatherExecutor.RunAsWindowsService(String directory, String command, String arguments)
        Message: FileName Path: C:\Program Files (x86)\Lenovo\System Update\TvsuCommandLauncher.exe
    Info    2011-02-05 , 04:14:19
        at Tvt.Helpcenter.Quest.QuestResponse.ConnectToQuest()
        Message: Setting QuestResponse Path to: C:\Program Files (x86)\Lenovo\System Update\session\QuestResponse.xml
    Info    2011-02-05 , 04:14:19
        at Tvt.Helpcenter.Quest.QuestResponse.ConnectToQuest()
        Message:
    Quest Url: https://www-03.ibm.com/pc/support/services/questquery/pc_support_services_questquery_viewer_EDAPortB...
    Info    2011-02-05 , 04:14:19
        at Tvt.FileDownloader.DirectFileDownloader.StartDownload()
        Message: Uri to download-> https://www-03.ibm.com/pc/support/services/questquery/pc_support_services_questquery_viewer_EDAPortB...
    Severe    2011-02-05 , 04:14:19
        at Tvt.FileDownloader.DirectFileDownloader.StartDownload()
        Message: Unexpected exception setting the request-> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header/><soapenv:Body><p869:getDescriptors xmlns869="http://www.ibm.com/xmlns/prod/pc/esupportda/binding/20041013"><agent>TVSUWeb/1</agent><queryValue>4389AB8</queryValue><os>Windows 7</os><osLanguage>EN</osLanguage></p869:getDescriptors></soapenv:Body></soapenv:Envelope>
        Exception:
            Message: The underlying connection was closed: An unexpected error occurred on a receive.
            Type: System.Net.WebException
               at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
       at System.Net.HttpWebRequest.GetRequestStream()
       at Tvt.FileDownloader.DirectFileDownloader.StartDownload()
    Info    2011-02-05 , 04:14:19
        at Tvt.Helpcenter.Quest.QuestResponse.ConnectToQuest()
        Message: Exception setting the request content
    Info    2011-02-05 , 04:14:19
        at Tvsu.Engine.Process.HelpCenterQuestProcess.GetQuestResponse(String currentUrl)
        Message: Tvt.FileDownloader.DownloadException
    Exception setting the request content
       at Tvt.FileDownloader.DirectFileDownloader.StartDownload()
       at Tvt.Helpcenter.Quest.QuestResponse.ConnectToQuest()
       at Tvt.Helpcenter.Quest.QuestResponse.RunQuest(String URL, String Mtm, String Os, String Oslanguage, String ClientLevel, ConnectionSettingsBean connbean, String xmlpath, String[] Certificates)
       at Tvsu.Engine.Process.HelpCenterQuestProcess.GetQuestResponse(String currentUrl)
        Exception:
            Message: Exception setting the request content
            Type: Tvt.FileDownloader.DownloadException
               at Tvt.FileDownloader.DirectFileDownloader.StartDownload()
       at Tvt.Helpcenter.Quest.QuestResponse.ConnectToQuest()
       at Tvt.Helpcenter.Quest.QuestResponse.RunQuest(String URL, String Mtm, String Os, String Oslanguage, String ClientLevel, ConnectionSettingsBean connbean, String xmlpath, String[] Certificates)
       at Tvsu.Engine.Process.HelpCenterQuestProcess.GetQuestResponse(String currentUrl)
    Severe    2011-02-05 , 04:14:19
        at Tvsu.Engine.Process.HelpCenterQuestProcess.LaunchHelpCenterProcess()
        Message: An error ocurred while contacting the help center
        Exception:
            Message: Exception setting the request content
            Type: Tvt.FileDownloader.DownloadException
               at Tvt.FileDownloader.DirectFileDownloader.StartDownload()
       at Tvt.Helpcenter.Quest.QuestResponse.ConnectToQuest()
       at Tvt.Helpcenter.Quest.QuestResponse.RunQuest(String URL, String Mtm, String Os, String Oslanguage, String ClientLevel, ConnectionSettingsBean connbean, String xmlpath, String[] Certificates)
       at Tvsu.Engine.Process.HelpCenterQuestProcess.GetQuestResponse(String currentUrl)
       at Tvsu.Engine.Process.HelpCenterQuestProcess.LaunchHelpCenterProcess()
    Info    2011-02-05 , 04:14:19
        at Tvsu.Engine.Task.Task.Start()
        Message: Executing the PostProcess HelpCenterQuestProcess
    Severe    2011-02-05 , 04:14:19
        at Tvsu.Engine.Task.Task.StartExecution()
        Message: An error occurred while the task: ApplicableUpdatesTask executed the process: HelpCenterQuestProcessthe message from exception isException setting the request content
        Exception:
            Message: Exception setting the request content
            Type: Tvt.FileDownloader.DownloadException
               at Tvsu.Engine.Task.Task.Start()
       at Tvsu.Engine.Task.Task.StartExecution()
    Info    2011-02-05 , 04:14:20
        at Tvsu.Gui.CustomComponents.Step.set_Image(StepImage value)
        Message: Setting FAILED status.
    Info    2011-02-05 , 04:14:20
        at Tvsu.Gui.GUIController.ShowErrorMessage(Exception e)
        Message: Error while downloading packages.
        Exception:
            Message: Exception setting the request content
            Type: Tvt.FileDownloader.DownloadException
               at Tvsu.Engine.Task.Task.StartExecution()
       at Tvsu.Sdk.SuSdk.GetApplicableUpdates(searchingFolderDelegate spd, showErrMsgDelegate sed)
       at Tvsu.Gui.Util.ProgressThread.InitSearch()
    Info    2011-02-05 , 04:14:20
        at Tvsu.Gui.FlowScreens.Messages.ShowMessage(String message, String title, String mastheadtext, MessageType t, Boolean check, IWin32Window owner)
        Message: Showing ERROR Message: < An error occurred while downloading packages.

    Thank you for the reply.  I already have NET. Framework 4.x installed and I stil have the same problem.
    I looked at the logs again and I believe the issue is that I can not download this file:
    https://download.lenovo.com/ibmdl/pub/pc/pccbbs/agent/SSClientCommon/HelloLevel_8_05_80.xml
    Can someone try that link and see if they get anything?  I keep getting in my browser "file not found".
        at Tvsu.Engine.Process.HelloProcess.Start()
        Message: HelloProcess Started
    Info    2011-02-07 , 09:23:47
        at Tvsu.Engine.Process.HelloProcess.Start()
        Message: Client level: HelloLevel_8_05_80
    Info    2011-02-07 , 09:23:47
        at Tvsu.Engine.Process.HelloProcess.DownloadUDF(String helloClientLevel)
        Message: The UDF will be downloaded from: https://download.lenovo.com/ibmdl/pub/pc/pccbbs/agent/SSClientCommon/HelloLevel_8_05_80.xml
    Info    2011-02-07 , 09:23:47
        at Tvsu.Engine.Process.HelloProcess.DownloadUDF(String helloClientLevel)
        Message: The UDF will be downloaded to-> C:\Program Files (x86)\Lenovo\System Update\session\system\SSClientCommon\HelloLevel_8_05_80.xml
    Info    2011-02-07 , 09:23:47
        at Tvsu.ConnectionSettings.ConnectionSettings.GetConnectionForURL(String url)
        Message: Connection settings bean found for download.lenovo.com
    Info    2011-02-07 , 09:23:47
        at Tvsu.FileDownloader.HttpsDownload.GetProxy(ConnectionSettingsBean connBean)
        Message: Connection type set to DIRECT in ConnectionSettingsBean
    Info    2011-02-07 , 09:23:47
        at Tvsu.Gui.CustomComponents.Step.set_Image(StepImage value)
        Message: Setting PROCESSING status.
    Info    2011-02-07 , 09:23:47
        at Tvsu.Engine.Process.HelloProcess.Start()
        Message: UDF download status is -> Failed
    Severe    2011-02-07 , 09:23:47
        at Tvsu.Engine.Process.HelloProcess.Start()
        Message: Could't connect to the HelloServer, no UDF file was downloaded

  • DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.

    Greetings,
    I have been running WSUS at my site going on a year now, and have been fairly successful with monitoring and applying updates.j
    Very recently a number of my clients a particular site say just slightly less than half have been displaying this error while downloading updates from the server.
    I have researched the topic and found few possible solutions, but after testing nothing seems to be consistent.
    1.   stop update service and bits and remove the sus client ids and restart the service.
    2.  flushdns entries
    3.  verify that windowsauthenticated users have access to WSUS folders in IIS.
    4.  re-register the wups2.dll
    Trouble is no one solution seems to work and so I'm having hard time pinning down a specific solution that I need to apply to 78 or so computers.  Additionally it seems work almost instantly sometimes and other times it doesn't seem to get fixed till the next day.  Its quite confusing, and it seems only affect 1 site out of 4, and I'm anxious to keep the problem isolated to one site.

    This is quite true, and I have been tackling single computers to correct the problem.
    What has changed is the IP address of the WSUS server since we changed subnet masking at our site.
    In my early test stages I simply used the IP address at this site, and when the subnet mask and IP changes occurred I took the opportunity to change the policy to reflect the server name as well instead of an IP.
    Now roughly 81 out of 277 computers are experiencing this problem,  they communicate with the WSUS server, but when they try and download updates several different error's occur.
    Here is an excerpt of the log I see on the problem clients.  All of them have similiar errors.
    AU setting next detection timeout to 2008-12-10 18:38:23
    2008-12-10 08:38:23:236 1096 14bc AU Setting AU scheduled install time to 2008-12-11 08:00:00
    2008-12-10 08:38:28:236 1096 9ec Report REPORT EVENT: {F69B23FA-DBCC-4435-A269-6C01E92EBBB6} 2008-12-10 08:38:23:236-0500 1 148 101 {00000000-0000-0000-0000-000000000000} 0 80072ee2 AutomaticUpdates Failure Software Synchronization Windows Update Client failed to detect with error 0x80072ee2.
    2008-12-10 08:38:34:596 1096 a9c DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 08:38:59:626 1096 17a8 DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 08:39:24:672 1096 9b0 DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 08:39:49:703 1096 a9c DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 08:39:49:719 1096 14bc AU AU checked download status and it changed: Downloading is paused
    2008-12-10 08:39:49:719 5364 69c CltUI AU client got new directive = 'Shutdown', serviceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, return = 0x00000000
    2008-12-10 08:39:49:844 1096 ca8 AU AU received handle event
    2008-12-10 08:49:48:219 1096 9ec PT WARNING: Cached cookie has expired or new PID is available
    2008-12-10 08:49:48:219 1096 9ec PT Initializing simple targeting cookie, clientId = fea6f78c-4d48-47d9-89e3-83ff4f93e1af, target group = TPA_WKST, DNS name = ecopy-nce11.ccs.com
    2008-12-10 08:49:48:219 1096 9ec PT   Server URL = http://server/SimpleAuthWebService/SimpleAuth.asmx
    2008-12-10 08:49:50:578 1096 9ec PT WARNING: GetCookie failure, error = 0x8024400D, soap client error = 7, soap error code = 300, HTTP status code = 200
    2008-12-10 08:49:50:578 1096 9ec PT WARNING: SOAP Fault: 0x00012c
    2008-12-10 08:49:50:578 1096 9ec PT WARNING:     faultstring:Fault occurred
    2008-12-10 08:49:50:578 1096 9ec PT WARNING:     ErrorCode:ServerChanged(4)
    2008-12-10 08:49:50:578 1096 9ec PT WARNING:     Message:Server rolled back since last call to GetCookie
    2008-12-10 08:49:50:578 1096 9ec PT WARNING:     Method:"http://www.microsoft.com/SoftwareDistribution/Server/ClientWebService/GetCookie"
    2008-12-10 08:49:50:578 1096 9ec PT WARNING:     ID:1957801d-6c11-4463-b33f-ae28251962c4
    2008-12-10 08:49:50:578 1096 9ec PT WARNING: PTError: 0x80244015
    2008-12-10 08:49:50:578 1096 9ec PT WARNING: GetCookie_WithRecovery failed : 0x80244015
    2008-12-10 08:49:50:578 1096 9ec PT WARNING: RefreshCookie failed: 0x80244015
    2008-12-10 08:49:50:578 1096 9ec PT WARNING: RefreshPTState failed: 0x80244015
    2008-12-10 08:49:50:688 1096 9ec PT WARNING: Cached cookie has expired or new PID is available
    2008-12-10 08:49:50:688 1096 9ec PT Initializing simple targeting cookie, clientId = fea6f78c-4d48-47d9-89e3-83ff4f93e1af, target group = TPA_WKST, DNS name = ecopy-nce11.ccs.com
    2008-12-10 08:49:50:688 1096 9ec PT   Server URL = http://server/SimpleAuthWebService/SimpleAuth.asmx
    2008-12-10 08:49:50:828 1096 9ec PT WARNING: No updates found from server; serverID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}
    2008-12-10 08:49:50:891 1096 9ec Report Uploading 1 events using cached cookie, reporting URL = http://server/ReportingWebService/ReportingWebService.asmx
    2008-12-10 08:49:50:922 1096 9ec Report Reporter successfully uploaded 1 events.
    2008-12-10 08:57:45:566 1096 1424 AU AU checked download status and it changed: Downloading is not paused
    2008-12-10 08:57:45:566 1096 1424 AU AU setting pending client directive to 'Download Progress'
    2008-12-10 08:58:00:581 1096 ca8 AU Launched new AU client for directive 'Download Progress', session id = 0x0
    2008-12-10 08:58:00:675  396 d88 Misc ===========  Logging initialized (build: 7.1.6001.65, tz: -0500)  ===========
    2008-12-10 08:58:00:675  396 d88 Misc   = Process: C:\WINDOWS\system32\wuauclt.exe
    2008-12-10 08:58:00:675  396 d88 AUClnt Launched Client UI process
    2008-12-10 08:58:00:753  396 d88 Misc ===========  Logging initialized (build: 7.1.6001.65, tz: -0500)  ===========
    2008-12-10 08:58:00:753  396 d88 Misc   = Process: C:\WINDOWS\system32\wuauclt.exe
    2008-12-10 08:58:00:753  396 d88 Misc   = Module: C:\WINDOWS\system32\wucltui.dll
    2008-12-10 08:58:00:753  396 d88 CltUI AU client got new directive = 'Download Progress', serviceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, return = 0x00000000
    2008-12-10 08:58:00:753  396 d88 CltUI AU client creating default WU/WSUS UI plugin
    2008-12-10 08:58:09:659 1096 13a0 DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 08:58:38:768 1096 13a0 DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 08:59:04:798 1096 13a0 DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 08:59:29:829 1096 13a0 DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 08:59:55:985 1096 c3c DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 09:00:20:031 1096 648 DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 09:00:20:031 1096 1424 AU AU checked download status and it changed: Downloading is paused
    2008-12-10 09:00:20:031  396 d88 CltUI AU client got new directive = 'Shutdown', serviceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, return = 0x00000000
    2008-12-10 09:00:20:156 1096 ca8 AU AU received handle event
    2008-12-10 09:14:39:665 1096 ca8 AU ###########  AU: Uninitializing Automatic Updates  ###########
    2008-12-10 09:14:40:415 1096 ca8 Service *********
    2008-12-10 09:14:40:415 1096 ca8 Service **  END  **  Service: Service exit [Exit code = 0x240001]
    2008-12-10 09:14:40:415 1096 ca8 Service *************
    2008-12-10 09:16:53:724 1096 f48 Misc ===========  Logging initialized (build: 7.1.6001.65, tz: -0500)  ===========
    2008-12-10 09:16:53:724 1096 f48 Misc   = Process: C:\WINDOWS\System32\svchost.exe
    2008-12-10 09:16:53:724 1096 f48 Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2008-12-10 09:16:53:724 1096 f48 Service *************
    2008-12-10 09:16:53:724 1096 f48 Service ** START **  Service: Service startup
    2008-12-10 09:16:53:724 1096 f48 Service *********
    2008-12-10 09:16:53:740 1096 f48 Agent   * WU client version 7.1.6001.65
    2008-12-10 09:16:53:740 1096 f48 Agent   * Base directory: C:\WINDOWS\SoftwareDistribution
    2008-12-10 09:16:53:740 1096 f48 Agent   * Access type: No proxy
    2008-12-10 09:16:53:740 1096 f48 Agent   * Network state: Connected
    2008-12-10 09:17:20:270 1096 2a0 Agent ***********  Agent: Initializing Windows Update Agent  ***********
    2008-12-10 09:17:20:270 1096 f48 Agent Created new random SusClientId 31e19963-330e-4195-a1e9-eb1c4c57388b. Old Id: none.
    2008-12-10 09:17:20:270 1096 f48 Report ***********  Report: Initializing static reporting data  ***********
    2008-12-10 09:17:20:270 1096 f48 Report   * OS Version = 5.1.2600.3.0.65792
    2008-12-10 09:17:20:270 1096 2a0 Agent ***********  Agent: Initializing global settings cache  ***********
    2008-12-10 09:17:20:270 1096 2a0 Agent   * WSUS server: http://server
    2008-12-10 09:17:20:286 1096 2a0 Agent   * WSUS status server: http://server
    2008-12-10 09:17:20:286 1096 2a0 Agent   * Target group: TPA_WKST
    2008-12-10 09:17:20:286 1096 2a0 Agent   * Windows Update access disabled: No
    2008-12-10 09:17:20:630 1096 f48 Report   * Computer Brand = Hewlett-Packard
    2008-12-10 09:17:20:630 1096 f48 Report   * Computer Model = HP Compaq dc7700 Small Form Factor
    2008-12-10 09:17:20:630 1096 f48 Report   * Bios Revision = 786E1 v01.10
    2008-12-10 09:17:20:630 1096 f48 Report   * Bios Name = Default System BIOS
    2008-12-10 09:17:20:630 1096 f48 Report   * Bios Release Date = 2007-04-13T00:00:00
    2008-12-10 09:17:20:630 1096 f48 Report   * Locale ID = 1033
    2008-12-10 09:17:21:161 1096 2a0 Agent   * Found 6 persisted download calls to restore
    2008-12-10 09:17:21:208 1096 2a0 DnldMgr Download manager restoring 6 downloads
    2008-12-10 09:17:21:208 1096 2a0 Agent WARNING: fail to get update deployments with error 0x80248007
    2008-12-10 09:17:21:223 1096 2a0 Agent WARNING: fail to get localized metadata for installed categories with error 0x80248007
    2008-12-10 09:17:21:223 1096 2a0 Agent WARNING: fail to get update deployments with error 0x80248007
    2008-12-10 09:17:21:223 1096 2a0 Agent WARNING: fail to get localized metadata for installed categories with error 0x80248007
    2008-12-10 09:17:21:239 1096 2a0 Agent WARNING: fail to get update deployments with error 0x80248007
    2008-12-10 09:17:21:239 1096 2a0 Agent WARNING: fail to get localized metadata for installed categories with error 0x80248007
    2008-12-10 09:17:21:255 1096 2a0 Agent WARNING: fail to get update deployments with error 0x80248007
    2008-12-10 09:17:21:255 1096 2a0 Agent WARNING: fail to get localized metadata for installed categories with error 0x80248007
    2008-12-10 09:17:21:270 1096 2a0 Agent WARNING: fail to get update deployments with error 0x80248007
    2008-12-10 09:17:21:270 1096 2a0 Agent WARNING: fail to get localized metadata for installed categories with error 0x80248007
    2008-12-10 09:17:21:302 1096 2a0 Agent WARNING: fail to get update deployments with error 0x80248007
    2008-12-10 09:17:21:302 1096 2a0 Agent WARNING: fail to get localized metadata for installed categories with error 0x80248007
    2008-12-10 09:17:21:317 1096 2a0 Agent   * Successfully loaded 6 persisted download calls.
    2008-12-10 09:17:21:333 1096 2a0 DnldMgr Retrieved 6 persisted download jobs
    2008-12-10 09:17:21:333 1096 2a0 DnldMgr ***********  DnldMgr: Restoring download [no. 0]  ***********
    2008-12-10 09:17:21:333 1096 2a0 DnldMgr   * BITS JobId = {15BD2005-CA46-4F6A-839C-D134CBAD5859}
    2008-12-10 09:17:21:333 1096 2a0 DnldMgr   * ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}
    2008-12-10 09:17:21:333 1096 2a0 DnldMgr   * UpdateId = {4A1FB540-18F4-4829-BA3A-E0A3B974B94B}.102
    2008-12-10 09:17:21:364 1096 2a0 DnldMgr   * Restored download job.
    2008-12-10 09:17:21:411 1096 2a0 DnldMgr ***********  DnldMgr: Restoring download [no. 1]  ***********
    2008-12-10 09:17:21:411 1096 2a0 DnldMgr   * BITS JobId = {E35C6D0D-BA95-418F-97B2-91E4DA1F34CA}
    2008-12-10 09:17:21:411 1096 2a0 DnldMgr   * ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}
    2008-12-10 09:17:21:411 1096 2a0 DnldMgr   * UpdateId = {6CB928F0-E9B8-4358-B64B-059EB779A2FA}.100
    2008-12-10 09:17:21:458 1096 2a0 DnldMgr   * Restored download job.
    2008-12-10 09:17:21:505 1096 2a0 DnldMgr ***********  DnldMgr: Restoring download [no. 2]  ***********
    2008-12-10 09:17:21:505 1096 2a0 DnldMgr   * BITS JobId = {E3565E59-6623-4CBF-A9AA-9B14920D03F5}
    2008-12-10 09:17:21:505 1096 2a0 DnldMgr   * ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}
    2008-12-10 09:17:21:505 1096 2a0 DnldMgr   * UpdateId = {2CF1D0A0-59D5-4AA7-A740-DFC32046EB27}.101
    2008-12-10 09:17:21:552 1096 2a0 DnldMgr   * Restored download job.
    2008-12-10 09:17:21:598 1096 2a0 DnldMgr ***********  DnldMgr: Restoring download [no. 3]  ***********
    2008-12-10 09:17:21:598 1096 2a0 DnldMgr   * BITS JobId = {1A6D4575-C406-415D-832E-58A946D116BA}
    2008-12-10 09:17:21:598 1096 2a0 DnldMgr   * ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}
    2008-12-10 09:17:21:598 1096 2a0 DnldMgr   * UpdateId = {0C525755-1925-4BD8-8AE6-092760EBBAC1}.102
    2008-12-10 09:17:21:645 1096 2a0 DnldMgr   * Restored download job.
    2008-12-10 09:17:21:739 1096 2a0 DnldMgr ***********  DnldMgr: Restoring download [no. 4]  ***********
    2008-12-10 09:17:21:739 1096 2a0 DnldMgr   * BITS JobId = {D88ED599-BF7A-46A6-A80F-53D309DCA2D2}
    2008-12-10 09:17:21:739 1096 2a0 DnldMgr   * ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}
    2008-12-10 09:17:21:770 1096 2a0 DnldMgr   * UpdateId = {56011413-4957-4979-ABB0-833B4F45BBA6}.102
    2008-12-10 09:17:21:802 1096 2a0 DnldMgr   * Restored download job.
    2008-12-10 09:17:21:848 1096 2a0 DnldMgr ***********  DnldMgr: Restoring download [no. 5]  ***********
    2008-12-10 09:17:21:848 1096 2a0 DnldMgr   * BITS JobId = {0FD110B2-12E5-46BB-9BD7-A2751DB47094}
    2008-12-10 09:17:21:848 1096 2a0 DnldMgr   * ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}
    2008-12-10 09:17:21:848 1096 2a0 DnldMgr   * UpdateId = {7CFFD5D8-DD02-474C-AFC6-52447631EA90}.102
    2008-12-10 09:17:21:895 1096 2a0 DnldMgr   * Restored download job.
    2008-12-10 09:17:21:973 1096 2a0 AU ###########  AU: Initializing Automatic Updates  ###########
    2008-12-10 09:17:21:989 1096 2a0 AU   # WSUS server: http://server
    2008-12-10 09:17:21:989 1096 2a0 AU   # Detection frequency: 6
    2008-12-10 09:17:21:989 1096 2a0 AU   # Target group: TPA_WKST
    2008-12-10 09:17:21:989 1096 2a0 AU   # Approval type: Scheduled (Policy)
    2008-12-10 09:17:21:989 1096 2a0 AU   # Scheduled install day/time: Every day at 3:00
    2008-12-10 09:17:21:989 1096 2a0 AU   # Auto-install minor updates: Yes (Policy)
    2008-12-10 09:17:22:005 1096 2a0 Agent Switching to hardware-verified ClientId.
    2008-12-10 09:17:22:036 1096 2a0 Agent WARNING: Failed to get deployment data from data store, error 80248007
    2008-12-10 09:17:22:067 1096 2a0 Agent WARNING: Failed to get deployment data from data store, error 80248007
    2008-12-10 09:17:22:098 1096 2a0 Agent WARNING: Failed to get deployment data from data store, error 80248007
    2008-12-10 09:17:22:098 1096 2a0 Agent WARNING: Failed to get deployment data from data store, error 80248007
    2008-12-10 09:17:22:130 1096 2a0 Agent WARNING: Failed to get deployment data from data store, error 80248007
    2008-12-10 09:17:22:130 1096 2a0 Agent WARNING: Failed to get deployment data from data store, error 80248007
    2008-12-10 09:17:22:130 1096 2a0 AU Setting AU scheduled install time to 2008-12-11 08:00:00
    2008-12-10 09:17:22:192 1096 2a0 AU AU finished delayed initialization
    2008-12-10 09:17:22:192 1096 2a0 AU Triggering AU detection through DetectNow API
    2008-12-10 09:17:22:192 1096 2a0 AU Triggering Online detection (non-interactive)
    2008-12-10 09:17:22:208 1096 f48 AU #############
    2008-12-10 09:17:22:208 1096 f48 AU ## START ##  AU: Search for updates
    2008-12-10 09:17:22:208 1096 f48 AU #########
    2008-12-10 09:17:22:208 1096 f48 AU <<## SUBMITTED ## AU: Search for updates [CallId = {F1AE4D98-4B19-4489-9CCD-83F58B9BA43B}]
    2008-12-10 09:17:22:458 1096 790 Agent *************
    2008-12-10 09:17:22:458 1096 790 Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2008-12-10 09:17:22:458 1096 790 Agent *********
    2008-12-10 09:17:22:458 1096 790 Agent   * Online = Yes; Ignore download priority = No
    2008-12-10 09:17:22:458 1096 790 Agent   * Criteria = "IsHidden=0 and IsInstalled=0 and DeploymentAction='Installation' and IsAssigned=1 or IsHidden=0 and IsPresent=1 and DeploymentAction='Uninstallation' and IsAssigned=1 or IsHidden=0 and IsInstalled=1 and DeploymentAction='Installation' and IsAssigned=1 and RebootRequired=1 or IsHidden=0 and IsInstalled=0 and DeploymentAction='Uninstallation' and IsAssigned=1 and RebootRequired=1"
    2008-12-10 09:17:22:458 1096 790 Agent   * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}
    2008-12-10 09:17:22:458 1096 790 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wuident.cab:
    2008-12-10 09:17:22:473 1096 790 Misc  Microsoft signed: Yes
    2008-12-10 09:17:27:567 1096 790 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wuident.cab:
    2008-12-10 09:17:27:786 1096 790 Misc  Microsoft signed: Yes
    2008-12-10 09:17:28:098 1096 790 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wsus3setup.cab:
    2008-12-10 09:17:28:098 1096 790 Misc  Microsoft signed: Yes
    2008-12-10 09:17:28:114 1096 790 Setup ***********  Setup: Checking whether self-update is required  ***********
    2008-12-10 09:17:28:114 1096 790 Setup   * Inf file: C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wsus3setup.inf
    2008-12-10 09:17:28:114 1096 790 Setup Update NOT required for C:\WINDOWS\system32\cdm.dll: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:17:28:114 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuapi.dll: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:17:28:114 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuapi.dll.mui: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:17:28:114 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuauclt.exe: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:17:28:114 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuaucpl.cpl: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:17:28:114 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuaucpl.cpl.mui: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:17:28:130 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuaueng.dll: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:17:28:130 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuaueng.dll.mui: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:17:28:130 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wucltui.dll: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:17:28:130 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wucltui.dll.mui: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:17:28:130 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wups.dll: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:17:28:130 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wups2.dll: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:17:28:130 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuweb.dll: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:17:28:130 1096 790 Setup   * IsUpdateRequired = No
    2008-12-10 09:17:28:270 1096 790 PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2008-12-10 09:17:28:270 1096 790 PT   + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://server/ClientWebService/client.asmx
    2008-12-10 09:17:28:567 1096 790 Agent Created new random SusClientId 2e43c4c2-aaf6-486a-a412-7d41224c3674. Old Id: 31e19963-330e-4195-a1e9-eb1c4c57388b.
    2008-12-10 09:17:28:567 1096 790 PT Initializing simple targeting cookie, clientId = 2e43c4c2-aaf6-486a-a412-7d41224c3674, target group = TPA_WKST, DNS name = ecopy-nce11.ccs.com
    2008-12-10 09:17:28:567 1096 790 PT   Server URL = http://server/SimpleAuthWebService/SimpleAuth.asmx
    2008-12-10 09:17:28:801 1096 790 PT WARNING: GetCookie failure, error = 0x8024400D, soap client error = 7, soap error code = 300, HTTP status code = 200
    2008-12-10 09:17:28:801 1096 790 PT WARNING: SOAP Fault: 0x00012c
    2008-12-10 09:17:28:801 1096 790 PT WARNING:     faultstring:Fault occurred
    2008-12-10 09:17:28:801 1096 790 PT WARNING:     ErrorCode:ServerChanged(4)
    2008-12-10 09:17:28:801 1096 790 PT WARNING:     Message:Server rolled back since last call to GetCookie
    2008-12-10 09:17:28:801 1096 790 PT WARNING:     Method:"http://www.microsoft.com/SoftwareDistribution/Server/ClientWebService/GetCookie"
    2008-12-10 09:17:28:801 1096 790 PT WARNING:     ID:34ac6ca8-c2c0-47b1-9f1f-8694c80acb94
    2008-12-10 09:17:28:801 1096 790 PT WARNING: PTError: 0x80244015
    2008-12-10 09:17:28:801 1096 790 PT WARNING: GetCookie_WithRecovery failed : 0x80244015
    2008-12-10 09:17:28:801 1096 790 PT WARNING: RefreshCookie failed: 0x80244015
    2008-12-10 09:17:28:801 1096 790 PT WARNING: RefreshPTState failed: 0x80244015
    2008-12-10 09:17:28:801 1096 790 PT WARNING: Sync of Updates: 0x80244015
    2008-12-10 09:17:29:067 1096 790 PT WARNING: Cached cookie has expired or new PID is available
    2008-12-10 09:17:29:067 1096 790 PT Initializing simple targeting cookie, clientId = 2e43c4c2-aaf6-486a-a412-7d41224c3674, target group = TPA_WKST, DNS name = ecopy-nce11.ccs.com
    2008-12-10 09:17:29:067 1096 790 PT   Server URL = http://server/SimpleAuthWebService/SimpleAuth.asmx
    2008-12-10 09:17:49:145 1096 a38 DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 09:18:15:175 1096 1160 DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 09:18:29:972 1096 790 Misc WARNING: Send failed with hr = 80072ee2.
    2008-12-10 09:18:29:972 1096 790 Misc WARNING: SendRequest failed with hr = 80072ee2. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2008-12-10 09:18:29:972 1096 790 PT   + Last proxy send request failed with hr = 0x80072EE2, HTTP status code = 0
    2008-12-10 09:18:29:972 1096 790 PT   + Caller provided credentials = No
    2008-12-10 09:18:29:972 1096 790 PT   + Impersonate flags = 0
    2008-12-10 09:18:29:972 1096 790 PT   + Possible authorization schemes used =
    2008-12-10 09:18:29:972 1096 790 PT WARNING: RefreshCache failure, error = 0x80072EE2, soap client error = 5, soap error code = 0, HTTP status code = 200
    2008-12-10 09:18:29:972 1096 790 PT WARNING: PTError: 0x80072ee2
    2008-12-10 09:18:29:972 1096 790 PT WARNING: RefreshCache_WithRecovery failed: 0x80072ee2
    2008-12-10 09:18:29:972 1096 790 PT WARNING: SyncCache: Emergency cleanup of the ServerUpdateInfo due to failure in RefreshCache
    2008-12-10 09:18:29:972 1096 790 PT WARNING: SyncCache failed : 0x80072ee2
    2008-12-10 09:18:29:972 1096 790 PT WARNING: SyncServerUpdatesInternal failed: 0x80072ee2
    2008-12-10 09:18:29:972 1096 790 Agent   * WARNING: Failed to synchronize, error = 0x80072EE2
    2008-12-10 09:18:30:003 1096 790 Agent   * WARNING: Exit code = 0x80072EE2
    2008-12-10 09:18:30:003 1096 790 Agent *********
    2008-12-10 09:18:30:003 1096 790 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2008-12-10 09:18:30:003 1096 790 Agent *************
    2008-12-10 09:18:30:003 1096 790 Agent WARNING: WU client failed Searching for update with error 0x80072ee2
    2008-12-10 09:18:30:003 1096 af8 AU >>##  RESUMED  ## AU: Search for updates [CallId = {F1AE4D98-4B19-4489-9CCD-83F58B9BA43B}]
    2008-12-10 09:18:30:003 1096 af8 AU   # WARNING: Search callback failed, result = 0x80072EE2
    2008-12-10 09:18:30:019 1096 af8 AU   # WARNING: Failed to find updates with error code 80072EE2
    2008-12-10 09:18:30:019 1096 af8 AU #########
    2008-12-10 09:18:30:019 1096 af8 AU ##  END  ##  AU: Search for updates [CallId = {F1AE4D98-4B19-4489-9CCD-83F58B9BA43B}]
    2008-12-10 09:18:30:019 1096 af8 AU #############
    2008-12-10 09:18:30:019 1096 af8 AU AU setting next detection timeout to 2008-12-10 19:18:30
    2008-12-10 09:18:30:019 1096 af8 AU Setting AU scheduled install time to 2008-12-11 08:00:00
    2008-12-10 09:18:35:003 1096 790 Report REPORT EVENT: {E3120732-CFC4-44DC-9A33-4E0891CAFC62} 2008-12-10 09:18:30:003-0500 1 148 101 {00000000-0000-0000-0000-000000000000} 0 80072ee2 AutomaticUpdates Failure Software Synchronization Windows Update Client failed to detect with error 0x80072ee2.
    2008-12-10 09:18:40:221 1096 17b8 DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 09:19:08:221 1096 a38 DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 09:19:35:345 1096 1160 DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 09:20:00:376 1096 17b8 DnldMgr Error 0x80072efd occurred while downloading update; notifying dependent calls.
    2008-12-10 09:26:00:257 1096 734 AU Triggering AU detection through DetectNow API
    2008-12-10 09:26:00:257 1096 734 AU Triggering Online detection (non-interactive)
    2008-12-10 09:26:00:257 1096 f48 AU #############
    2008-12-10 09:26:00:257 1096 f48 AU ## START ##  AU: Search for updates
    2008-12-10 09:26:00:257 1096 f48 AU #########
    2008-12-10 09:26:00:257 1096 f48 AU <<## SUBMITTED ## AU: Search for updates [CallId = {6C17ABD8-8D9C-4FDD-8E08-9CE3D86CE860}]
    2008-12-10 09:26:00:257 1096 790 Agent *************
    2008-12-10 09:26:00:257 1096 790 Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2008-12-10 09:26:00:257 1096 790 Agent *********
    2008-12-10 09:26:00:257 1096 790 Agent   * Online = Yes; Ignore download priority = No
    2008-12-10 09:26:00:257 1096 790 Agent   * Criteria = "IsHidden=0 and IsInstalled=0 and DeploymentAction='Installation' and IsAssigned=1 or IsHidden=0 and IsPresent=1 and DeploymentAction='Uninstallation' and IsAssigned=1 or IsHidden=0 and IsInstalled=1 and DeploymentAction='Installation' and IsAssigned=1 and RebootRequired=1 or IsHidden=0 and IsInstalled=0 and DeploymentAction='Uninstallation' and IsAssigned=1 and RebootRequired=1"
    2008-12-10 09:26:00:257 1096 790 Agent   * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}
    2008-12-10 09:26:00:257 1096 790 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wuident.cab:
    2008-12-10 09:26:00:273 1096 790 Misc  Microsoft signed: Yes
    2008-12-10 09:26:02:632 1096 790 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wuident.cab:
    2008-12-10 09:26:02:648 1096 790 Misc  Microsoft signed: Yes
    2008-12-10 09:26:02:773 1096 790 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wsus3setup.cab:
    2008-12-10 09:26:02:788 1096 790 Misc  Microsoft signed: Yes
    2008-12-10 09:26:02:788 1096 790 Setup ***********  Setup: Checking whether self-update is required  ***********
    2008-12-10 09:26:02:788 1096 790 Setup   * Inf file: C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wsus3setup.inf
    2008-12-10 09:26:02:804 1096 790 Setup Update NOT required for C:\WINDOWS\system32\cdm.dll: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:26:02:804 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuapi.dll: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:26:02:804 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuapi.dll.mui: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:26:02:804 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuauclt.exe: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:26:02:804 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuaucpl.cpl: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:26:02:804 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuaucpl.cpl.mui: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:26:02:804 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuaueng.dll: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:26:02:804 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuaueng.dll.mui: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:26:02:804 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wucltui.dll: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:26:02:804 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wucltui.dll.mui: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:26:02:804 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wups.dll: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:26:02:804 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wups2.dll: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:26:02:804 1096 790 Setup Update NOT required for C:\WINDOWS\system32\wuweb.dll: target version = 7.1.6001.65, required version = 7.1.6001.65
    2008-12-10 09:26:02:804 1096 790 Setup   * IsUpdateRequired = No
    2008-12-10 09:26:03:616 1096 790 PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2008-12-10 09:26:03:616 1096 790 PT   + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://server/ClientWebService/client.asmx
    2008-12-10 09:26:03:835 1096 790 PT Initializing simple targeting cookie, clientId = 2e43c4c2-aaf6-486a-a412-7d41224c3674, target group = TPA_WKST, DNS name = ecopy-nce11.ccs.com
    2008-12-10 09:26:03:835 1096 790 PT   Server URL = http://server/SimpleAuthWebService/SimpleAuth.asmx
    2008-12-10 09:26:03:913 1096 790 PT WARNING: GetCookie failure, error = 0x8024400D, soap client error = 7, soap error code = 300, HTTP status code = 200
    2008-12-10 09:26:03:913 1096 790 PT WARNING: SOAP Fault: 0x00012c
    2008-12-10 09:26:03:913 1096 790 PT WARNING:     faultstring:Fault occurred
    2008-12-10 09:26:03:929 1096 790 PT WARNING:     ErrorCode:ServerChanged(4)
    2008-12-10 09:26:03:929 1096 790 PT WARNING:     Message:Server rolled back since last call to GetCookie
    2008-12-10 09:26:03:929 1096 790 PT WARNING:     Method:"http://www.microsoft.com/SoftwareDistribution/Server/ClientWebService/GetCookie"
    2008-12-10 09:26:03:929 1096 790 PT WARNING:     ID:cd7c405b-2dda-48c8-948c-444e8e8a925c
    2008-12-10 09:26:03:929 1096 790 PT WARNING: PTError: 0x80244015
    2008-12-10 09:26:03:929 1096 790 PT WARNING: GetCookie_WithRecovery failed : 0x80244015
    2008-12-10 09:26:03:929 1096 790 PT WARNING: RefreshCookie failed: 0x80244015
    2008-12-10 09:26:03:929 1096 790 PT WARNING: RefreshPTState failed: 0x80244015
    2008-12-10 09:26:03:929 1096 790 PT WARNING: Sync of Updates: 0x80244015
    2008-12-10 09:26:04:038 1096 790 PT WARNING: Cached cookie has expired or new PID is available
    2008-12-10 09:26:04:038 1096 790 PT Initializing simple targeting cookie, clientId = 2e43c4c2-aaf6-486a-a412-7d41224c3674, target group = TPA_WKST, DNS name = ecopy-nce11.ccs.com
    2008-12-10 09:26:04:038 1096 790 PT   Server URL = http://server/SimpleAuthWebService/SimpleAuth.asmx
    2008-12-10 09:26:56:818 1096 2a0 AU Triggering AU detection through DetectNow API
    2008-12-10 09:26:56:818 1096 2a0 AU Piggybacking on an AU detection already in progress
    2008-12-10 09:27:04:693 1096 790 Misc WARNING: Send failed with hr = 80072ee2.
    2008-12-10 09:27:04:693 1096 790 Misc WARNING: SendRequest failed with hr = 80072ee2. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2008-12-10 09:27:04:693 1096 790 PT   + Last proxy send request failed with hr = 0x80072EE2, HTTP status code = 0
    2008-12-10 09:27:04:693 1096 790 PT   + Caller provided credentials = No
    2008-12-10 09:27:04:693 1096 790 PT   + Impersonate flags = 0
    2008-12-10 09:27:04:693 1096 790 PT   + Possible authorization schemes used =
    2008-12-10 09:27:04:693 1096 790 PT WARNING: RefreshCache failure, error = 0x80072EE2, soap client error = 5, soap error code = 0, HTTP status code = 200
    2008-12-10 09:27:04:693 1096 790 PT WARNING: PTError: 0x80072ee2
    2008-12-10 09:27:04:693 1096 790 PT WARNING: RefreshCache_WithRecovery failed: 0x80072ee2
    2008-12-10 09:27:04:693 1096 790 PT WARNING: SyncCache: Emergency cleanup of the ServerUpdateInfo due to failure in RefreshCache
    2008-12-10 09:27:04:693 1096 790 PT WARNING: SyncCache failed : 0x80072ee2
    2008-12-10 09:27:04:693 1096 790 PT WARNING: SyncServerUpdatesInternal failed: 0x80072ee2
    2008-12-10 09:27:04:693 1096 790 Agent   * WARNING: Failed to synchronize, error = 0x80072EE2
    2008-12-10 09:27:04:755 1096 790 Agent   * WARNING: Exit code = 0x80072EE2
    2008-12-10 09:27:04:755 1096 790 Agent *********
    2008-12-10 09:27:04:755 1096 790 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2008-12-10 09:27:04:755 1096 790 Agent *************
    2008-12-10 09:27:04:755 1096 790 Agent WARNING: WU client failed Searching for update with error 0x80072ee2
    2008-12-10 09:27:04:755 1096 af8 AU >>##  RESUMED  ## AU: Search for updates [CallId = {6C17ABD8-8D9C-4FDD-8E08-9CE3D86CE860}]
    2008-12-10 09:27:04:755 1096 af8 AU   # WARNING: Search callback failed, result = 0x80072EE2
    2008-12-10 09:27:04:755 1096 af8 AU   # WARNING: Failed to find updates with error code 80072EE2
    2008-12-10 09:27:04:755 1096 af8 AU #########
    2008-12-10 09:27:04:755 1096 af8 AU ##  END  ##  AU: Search for updates [CallId = {6C17ABD8-8D9C-4FDD-8E08-9CE3D86CE860}]
    2008-12-10 09:27:04:755 1096 af8 AU #############
    2008-12-10 09:27:04:755 1096 af8 AU AU setting next detection timeout to 2008-12-10 19:27:04
    2008-12-10 09:27:04:755 1096 af8 AU Setting AU scheduled install time to 2008-12-11 08:00:00
    2008-12-10 09:27:04:912 1096 790 PT Initializing simple targeting cookie, clientId = 2e43c4c2-aaf6-486a-a412-7d41224c3674, target group = TPA_WKST, DNS name = ecopy-nce11.ccs.com
    2008-12-10 09:27:04:912 1096 790 PT   Server URL = http://server/SimpleAuthWebService/SimpleAuth.asmx
    2008-12-10 09:27:10:208 1096 790 PT WARNING: GetCookie failure, error = 0x8024400D, soap client error = 7, soap error code = 300, HTTP status code = 200
    2008-12-10 09:27:10:208 1096 790 PT WARNING: SOAP Fault: 0x00012c
    2008-12-10 09:27:10:208 1096 790 PT WARNING:     faultstring:Fault occurred
    2008-12-10 09:27:10:208 1096 790 PT WARNING:     ErrorCode:ServerChanged(4)
    2008-12-10 09:27:10:208 1096 790 PT WARNING:     Message:Server rolled back since last call to GetCookie
    2008-12-10 09:27:10:208 1096 790 PT WARNING:     Method:"http://www.microsoft.com/SoftwareDistribution/Server/ClientWebService/GetCookie"
    2008-12-10 09:27:10:208 1096 790 PT WARNING:     ID:2fb91469-8931-4410-a473-2aa6b4718b78
    2008-12-10 09:27:10:208 1096 790 PT WARNING: PTError: 0x80244015
    2008-12-10 09:27:10:208 1096 790 PT WARNING: GetCookie_WithRecovery failed : 0x80244015
    2008-12-10 09:27:10:208 1096 790 PT WARNING: RefreshCookie failed: 0x80244015
    2008-12-10 09:27:10:208 1096 790 PT WARNING: RefreshPTState failed: 0x80244015
    2008-12-10 09:27:10:958 1096 790 PT WARNING: Cached cookie has expired or new PID is available
    2008-12-10 09:27:10:958 1096 790 PT Initializing simple targeting cookie, clientId = 2e43c4c2-aaf6-486a-a412-7d41224c3674, target group = TPA_WKST, DNS name = ecopy-nce11.ccs.com
    2008-12-10 09:27:10:958 1096 790 PT   Server URL = http://server/SimpleAuthWebService/SimpleAuth.asmx
    2008-12-10 09:27:18:880 1096 790 PT WARNING: No updates found from server; serverID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}
    2008-12-10 09:27:18:927 1096 790 Report Uploading 1 events using cached cookie, reporting URL = http://server/ReportingWebService/ReportingWebService.asmx
    2008-12-10 09:27:18:974 1096 790 Report Reporter successfully uploaded 1 events.
    2008-12-10 09:27:18:974 1096 790 Report REPORT EVENT: {68B81B2C-0864-41B8-A95B-C3FA3AF50FD4} 2008-12-10 09:27:04:755-0500 1 148 101 {00000000-0000-0000-0000-000000000000} 0 80072ee2 AutomaticUpdates Failure Software Synchronization Windows Update Client failed to detect with error 0x80072ee2.
    2008-12-10 09:27:51:723 1096 f48 AU ###########  AU: Uninitializing Automatic Updates  ###########
    2008-12-10 09:27:51:739 1096 f48 Service *********
    2008-12-10 09:27:51:739 1096 f48 Service **  END  **  Service: Service exit [Exit code = 0x240001]
    2008-12-10 09:27:51:739 1096 f48 Service *************
    2008-12-10 09:30:08:548 1096 42c Misc ===========  Logging initialized (build: 7.1.6001.65, tz: -0500)  ===========
    2008-12-10 09:30:08:548 1096 42c Misc   = Process: C:\WINDOWS\System32\svchost.exe
    2008-12-10 09:30:08:548 1096 42c Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2008-12-10 09:30:08:548 1096 42c Service *************
    2008-12-10 09:30:08:548 1096 42c Service ** START **  Service: Service startup
    2008-12-10 09:30:08:548 1096 42c Service *********
    2008-12-10 09:30:08:548 1096 42c Agent   * WU client version 7.1.6001.65
    2008-12-10 09:30:08:548 1096 42c Agent   * Base directory: C:\WINDOWS\SoftwareDistribution
    2008-12-10 09:30:08:548 1096 42c Agent   * Access type: No proxy
    2008-12-10 09:30:08:548 1096 42c Agent   * Network state: Connected
    2008-12-10 09:30:37:062 1096 1324 Agent ***********  Agent: Initializing Windows Update Agent  ***********
    2008-12-10 09:30:37:062 1096 42c Agent Created new random SusClientId 4c36b65b-bd45-4f0e-955d-b09ff485bf9d. Old Id: none.
    2008-12-10 09:30:37:062 1096 42c Report ***********  Report: Initializing static reporting data  ***********
    2008-12-10 09:30:37:062 1096 42c Report   * OS Version = 5.1.2600.3.0.65792
    2008-12-10 09:30:37:062 1096 1324 Agent ***********  Agent: Initializing global settings cache  ***********
    2008-12-10 09:30:37:062 1096 1324 Agent   * WSUS server: http://server
    2008-12-10 09:30:37:062 1096 1324 Agent   * WSUS status server: http://server
    2008-12-10 09:30:37:062 1096 1324 Agent   * Target group: TPA_WKST
    2008-12-10 09:30:37:062 1096 1324 Agent   * Windows Update access disabled: No
    2008-12-10 09:30:37:406 1096 42c Report   * Computer Brand = Hewlett-Packard
    2008-12-10 09:30:37:406 1096 42c Report   * Computer Model = HP Compaq dc7700 Small Form Factor
    2008-12-10 09:30:37:422 1096 42c Report   * Bios Revision = 786E1 v01.10
    2008-12-10 09:30:37:422 1096 42c Report   * Bios Name = Default System BIOS
    2008-12-10 09:30:37:422 1096 42c Report   * Bios Release Date = 2007-04-13T00:00:00
    2008-12-10 09:30:37:422 1096 42c Report   * Locale ID = 1033
    2008-12-10 09:30:41:187 5536 a0c Misc ===========  Logging initialized (build: 7.1.6001.65, tz: -0500)  ===========
    2008-12-10 09:30:41:187 5536 a0c Misc   = Process: C:\WINDOWS\system32\wuauclt.exe
    2008-12-10 09:30:41:187 5536 a0c Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2008-12-10 09:30:41:172 5536 a0c DtaStor Default service for AU is {00000000-0000-0000-0000-000000000000}
    2008-12-10 09:30:41:312 5536 a0c DtaStor Default service for AU is {9482F4B4-E343-43B6-B170-9A65BC822C77}
    2008-12-10 09:30:41:328 1096 1324 Agent WARNING: Failed to read the service id for re-registration 0x80070002
    2008-12-10 09:30:41:328 1096 1324 Agent WARNING: Missing service entry in the backup data store; cleaning up
    2008-12-10 09:30:41:344 1096 1324 DnldMgr Download manager restoring 0 downloads

Maybe you are looking for

  • Photo album and Fireworks

    I want to create a photo album in Dreamweaver but when I selected the option dialog box said I need Fireworks installed. I installed a trial version of Fireworks bud Dweaver still gives me the same error message. Help please.

  • Problem with ringtones

    I'm getting the following message: Some of the items in the iTunes library, including ..... were not copied to the iPhone because you are not authorized to use them on this computer. How do I fix this... they were bought from iTunes on this computer

  • Music stops playing

    since i downloaded ISO 5 on my ipad and iphon 3 and 4 music stops after one track but the play symbol arrow still shows at top of screen. is this a ISO 5 error and how can i correct it?

  • LDAP connection problem

    I'm trying to connect to a server using Ldap in Java, but the connection dosent work. I did try to connect to my computer just for a test, my machine is on a network that use the server. Is it possible to connect to it using Ldap like this : env.put(

  • My iphone 4s cannot be turned on after updated to ios 7. can anyone tell me how to solve this

    my iphone cannot be turned on after a week i updated it to ios 7. I have tried many solution to turned it on but none of them works. Now it only appear the apple logo on my screen since 5 hours ago. Can anyone suggest me the best solution