Jump to content


Search the Community

Showing results for tags 'SCCM2012'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Cloud
    • Azure
    • Microsoft Intune
    • Office 365
    • Windows 365
  • General Stuff
    • General Chat
    • Events
    • Site News
    • Official Forum Supporters
    • Windows News
    • Suggestion box
    • Jobs
  • MDT, SMS, SCCM, Current Branch &Technical Preview
    • How do I ?
    • Microsoft Deployment Toolkit (MDT)
    • SMS 2003
    • Configuration Manager 2007
    • Configuration Manager 2012
    • System Center Configuration Manager (Current Branch)
    • Packaging
    • scripting
    • Endpoint Protection
  • Windows Client
    • how do I ?
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows Vista
    • Windows XP
    • windows screenshots
  • Windows Server
    • Windows Server General
    • Active Directory
    • Microsoft SQL Server
    • System Center Operations Manager
    • KMS
    • Windows Deployment Services
    • NAP
    • Failover Clustering
    • PKI
    • Hyper V
    • Exchange
    • IIS/apache/web server
    • System Center Data Protection Manager
    • System Center Service Manager
    • System Center App Controller
    • System Center Virtual Machine Manager
    • System Center Orchestrator
    • Lync
    • Application Virtualization
    • Sharepoint
    • WSUS

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Location


Interests

  1. Quick question, do I need to apply the cumulative updates if I am running SCCM2012 R2 CU3 before I upgrade to SCCM2012 R2 SP1? or will the SP1 install take care of the previous features and updates? Thanks Damo
  2. Just thought I'd share a script I wrote this morning. I currently have a task sequence that builds various devices and takes the OSDComputerName variable from the Asset Tag BIOS field. The Surface Pro 3 works a little different, in that you can't set this field directly from the BIOS, you need to set it using a CLI utility (available here - http://www.microsoft.com/en-us/download/details.aspx?id=44076).This usually means booting a brand new device, going through the OOBE stuff, running the CLI utility, then restarting into PXE and continuing with imaging as normal. The below .vbs script first checks if there is an existing asset tag entered, and if not prompts the user to enter a machine name, which it then uses in the Task Sequence and sets the tag locally using the utility, so the next time the device is built it just takes the tag straight from the BIOS. Dim objWMIService Dim colItems Dim objSMSEnv Dim strNewName Dim WshShell Dim strCurDir Set objWMIService = GetObject("winmgmts:\\.\root\CIMV2") Set colItems = objWMIService.ExecQuery("SELECT * FROM Win32_SystemEnclosure") 'Get the current Asset Tag For Each objItem In colItems 'Remove all beginning, trailing and containing spaces and switch to uppercase strNewName = objItem.SMBIOSAssetTag Next wscript.echo "Currently using " & strNewName & " as OSDComputerName" If left(strNewName,4) <> "SomeString" Then Do While X = 0 strNewName = InputBox ("Please enter a machine name i.e. HP-XXXXXX","Enter Machine Name...") If strNewName = "" Then Wscript.Echo "You must enter a machine name." Else Set WshShell = WScript.CreateObject("WScript.Shell") strCurDir = WshShell.CurrentDirectory WshShell.Run strCurDir & "\AssetTag -s " & UCase(strNewName), 0 wscript.echo "Currently using " & strNewName & " as OSDComputerName Set objSMSEnv = CreateObject("Microsoft.SMS.TSEnvironment") wscript.echo "Set Task Sequence variable OSDComputerName to: " & strNewName objSMSEnv("OSDComputerName") = UCase(strNewName) Exit Do End If Loop Else Wscript.Echo strNewName Set objSMSEnv = CreateObject("Microsoft.SMS.TSEnvironment") wscript.echo "Set Task Sequence variable OSDComputerName to: " & strNewName objSMSEnv("OSDComputerName") = UCase(strNewName) End If Set WshShell = Nothing I deployed it by having AssetTag.exe and script file in a folder on my SCCM OSD scripts directory, then created a simple package without program and pointed at this location. After distributing to my local DPs I then created a Run Command Line task sequence item and added the name of the script file into the Command Line area, making sure to reference the package containing the script.
  3. Hello i just deployed application to client computer. And i can see it in Software Center. But when i installing a software, it just freezes at 0% installing. What is wrong with it?
  4. Hello guys. Im using SCCM 2012. I just deployed application to my client computer(win7-32). But from client computer i cant see deployed application in software center and application catalog.Must i use distribition point to deploy any application? What log should i see?
  5. Hi Guys, Today while troubleshooting the MP role installation failure I saw " Failed to grab execution mutex. System error 258." in mpmsi.log file, Is this something because of pending reboot of the system (I noticed that system is pending for reboot in registry and the files that are waiting are mostly like ccm.tmp ). Log file snippet - MSI © (14:A0) [02:03:45:664]: Client-side and UI is none or basic: Running entire install on the server. MSI © (14:A0) [02:03:48:679]: Failed to grab execution mutex. System error 258. MSI © (14:A0) [02:03:48:679]: Cloaking enabled. MSI © (14:A0) [02:03:48:679]: Attempting to enable all disabled privileges before calling Install on Server MSI © (14:A0) [02:03:48:679]: Incrementing counter to disable shutdown. Counter after increment: 0 MSI © (14:A0) [02:03:48:679]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1 MSI © (14:A0) [02:03:48:679]: MainEngineThread is returning 1618 === Verbose logging stopped: 4/25/2015 2:03:48 === please help me in getting this cleared.
  6. Hi, I will do my best to explain the issue i am having but it is a weird issue. We have a collection set up that shows us any client that is not on R2 CU4, Upon monitoring this i have noticed that i have a lot of workstations sat in this collection that have recently been re-imaged with a task sequence that uses CU4 in the wizard. i have checked the client manually and it seems to have built correctly, it has all the right software all the actions and it reports to have the correct client version. (5.00.7958.1501). Yet when i check in configuration manager on the properties of that client, the version is 5.00.7958.1000. These workstations have been stuck in this collection and like this for about a month. I checked and most of these workstations have had a heartbeat update within the last 2 days. I also believe this issue is related to why in my recent batch of updates they are reporting as unknown even though i have checked on the Clients themselves and they seem to have installed the updates. Any ideas will be appreciated. Thanks.
  7. i am having inconsistent application installation during PXE deployment and the logs are not helping me out so i was hoping someone else might have an idea. i can image one laptop and get a few missing applications one time and re-image and get a few different applications missing. for each application that fails i see the following Unspecified error (Error: 80004005; Source: Windows) SMSTS log link <![LOG[ Setting Server Certificates.]LOG]!><time="09:51:35.001+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="utils.cpp:6171"> <![LOG[ Setting Authenticator.]LOG]!><time="09:51:35.001+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="utils.cpp:6178"> <![LOG[set authenticator in transport]LOG]!><time="09:51:35.002+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="libsmsmessaging.cpp:7734"> <![LOG[ Setting Media Certificate.]LOG]!><time="09:51:35.002+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="utils.cpp:6195"> <![LOG[sending StatusMessage]LOG]!><time="09:51:35.031+240" date="03-24-2015" component="InstallApplication" context="" type="1" thread="2488" file="libsmsmessaging.cpp:4023"> <![LOG[setting message signatures.]LOG]!><time="09:51:35.032+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="libsmsmessaging.cpp:1295"> <![LOG[setting the authenticator.]LOG]!><time="09:51:35.032+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="libsmsmessaging.cpp:1325"> <![LOG[CLibSMSMessageWinHttpTransport::Send: URL: SR0SCCM03.domain.com:80 CCM_POST /ccm_system/request]LOG]!><time="09:51:35.034+240" date="03-24-2015" component="InstallApplication" context="" type="1" thread="2488" file="libsmsmessaging.cpp:8604"> <![LOG[Request was successful.]LOG]!><time="09:51:35.062+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="libsmsmessaging.cpp:8939"> <![LOG[install application action cannot continue. ContinueOnErrorFlag is set to false.]LOG]!><time="09:51:35.062+240" date="03-24-2015" component="InstallApplication" context="" type="3" thread="2488" file="installapplication.cpp:898"> <![LOG[hrInstallation, HRESULT=80004005 (e:\nts_sccm_release\sms\client\osdeployment\installapplication\installapplication.cpp,899)]LOG]!><time="09:51:35.062+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="installapplication.cpp:899"> <![LOG[pInstall->InstallApplications(saAppNames, sContinueOnError), HRESULT=80004005 (e:\nts_sccm_release\sms\client\osdeployment\installapplication\main.cpp,277)]LOG]!><time="09:51:35.228+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="main.cpp:277"> <![LOG[install Static Applications failed, hr=0x80004005]LOG]!><time="09:51:35.228+240" date="03-24-2015" component="InstallApplication" context="" type="3" thread="2488" file="main.cpp:277"> <![LOG[Process completed with exit code 2147500037]LOG]!><time="09:51:35.232+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="commandline.cpp:1123"> <![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="09:51:35.232+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="instruction.cxx:804"> <![LOG[Failed to run the action: Install Java. Unspecified error (Error: 80004005; Source: Windows)]LOG]!><time="09:51:35.233+240" date="03-24-2015" component="TSManager" context="" type="3" thread="3804" file="instruction.cxx:895"> <![LOG[MP server http://SR0SCCM03.domain.com. Ports 80,443. CRL=false.]LOG]!><time="09:51:35.234+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="utils.cpp:5881"> <![LOG[setting authenticator]LOG]!><time="09:51:35.242+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="utils.cpp:5903"> <![LOG[set authenticator in transport]LOG]!><time="09:51:35.242+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="libsmsmessaging.cpp:7734"> <![LOG[sending StatusMessage]LOG]!><time="09:51:35.261+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="libsmsmessaging.cpp:4023"> <![LOG[setting message signatures.]LOG]!><time="09:51:35.262+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="libsmsmessaging.cpp:1295"> <![LOG[setting the authenticator.]LOG]!><time="09:51:35.262+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="libsmsmessaging.cpp:1325"> <![LOG[CLibSMSMessageWinHttpTransport::Send: URL: SR0SCCM03.domain.com:80 CCM_POST /ccm_system/request]LOG]!><time="09:51:35.264+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="libsmsmessaging.cpp:8604"> <![LOG[Request was successful.]LOG]!><time="09:51:35.287+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="libsmsmessaging.cpp:8939"> <![LOG[set a global environment variable _SMSTSLastActionRetCode=-2147467259]LOG]!><time="09:51:35.288+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="executionenv.cxx:668"> <![LOG[set a global environment variable _SMSTSLastActionSucceeded=false]LOG]!><time="09:51:35.288+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="executionenv.cxx:668"> <![LOG[Clear local default environment]LOG]!><time="09:51:35.289+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="executionenv.cxx:807"> <![LOG[The execution engine ignored the failure of the action (Install Java) and continues execution]LOG]!><time="09:51:35.293+240" date="03-24-2015" component="TSManager" context="" type="2" thread="3804" file="instruction.cxx:962"> <![LOG[MP server http://SR0SCCM03.domain.com. Ports 80,443. CRL=false.]LOG]!><time="09:51:35.294+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="utils.cpp:5881"> <![LOG[setting authenticator]LOG]!><time="09:51:35.305+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="utils.cpp:5903"> <![LOG[set authenticator in transport]LOG]!><time="09:51:35.305+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="libsmsmessaging.cpp:7734"> <![LOG[sending StatusMessage]LOG]!><time="09:51:35.323+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="libsmsmessaging.cpp:4023"> <![LOG[setting message signatures.]LOG]!><time="09:51:35.325+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="libsmsmessaging.cpp:1295"> <![LOG[setting the authenticator.]LOG]!><time="09:51:35.325+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="libsmsmessaging.cpp:1325"> <![LOG[CLibSMSMessageWinHttpTransport::Send: URL: SR0SCCM03.domain.com:80 CCM_POST /ccm_system/request]LOG]!><time="09:51:35.326+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="libsmsmessaging.cpp:8604">
  8. hi I have installed SCCM 2012 r2 with two servers .A site server and a database server .I enabled software metering on client settings and software and hard ware inventory .But I ve got a problem that sccm doesn't create software metering rules automatically .I had already enabled Automatic create software metering rule on SMW properties . But no luck yet. when I create a rule manually It works fine but Its not working automatically .
  9. Guys, Wondering if anyone can help me out, i've been working on this for a few days now and i haven't made any progress. we are testing IE 11 with enterprise mode on windows 7 sp1 machines currently have IE8 installed. these are the steps im trying to achieve 1) Install Prerequisites KB2834140, KB2670838, KB2639308, KB2533623, KB2731771, KB2729094, KB2786081, KB2888049, KB2882822 2) Reboot 3) Install IE11-Setup-Full.exe ( IEAK) 4)Reboot 5)Install KB2929437 (for enterprise mode) 6)Reboot 7)install IE11 ADMX templates ( we had issues where everytime we opened up local gpedit.msc it gave us an error message so this replaces the current ones from sysvol. we also noticed the enterprise policy wasnt being set, even though its been set in AGMP) ive tried both Application and Package method using Batch Files, both ways don't work. Has anyone successfully deployed IE 11 with enterprise mode enabled ?. any help would be appreciated thank you
  10. I have been trying to add an OU selection during my deployement in my HTA and JS files, But I cant seem to get the variable MachineObjectOU to get passed along. It keeps placing everything in the Computers OU... The code in question is below: How do I write the correct javascript to pass the value?? I have MacineObejectOU = document.getElementById('MachineObjectOU').checked That does not work though, anyone have suggestions? <p><Select id=JoinDomain name=JoinDomain language=vbscript onchange="myfunction()" onpropertychange=ValidateDomainMembership accesskey=a> <option>Select Domain</option> <option value="Administrative">Administrative</option> <option value="Developement">Developement</option> <option value="External">External</option> <option value="IT">IT</option> <option value="Restricted">Restricted</option> <option value="Sales">Sales</option> <option value="Service Computers">Service Computers</option> <label class=ErrMsg for=JoinDomain>* Required</label> </p> </td> </tr> <script type="text/javascript"> function myFunction() { alert(JoinDomain.value); switch(JoinDomain.value) { case "Administrative": MachineObjectOU.value="OU=Administrative,OU=Workstations,DC=online,DC=com"; break; case "Developement": MachineObjectOU.value="OU=Developement,OU=Workstations,DC=online,DC=com"; break; case "External": MachineObjectOU.value="OU=External,OU=Workstations,DC=online,DC=com"; break; case "IT": MachineObjectOU.value="OU=IT,OU=Workstations,DC=online,DC=com"; break; case "Restricted": MachineObjectOU.value="OU=Restricted,OU=Workstations,DC=online,DC=com"; break; case "Sales": MachineObjectOU.value="OU=Sales,OU=Workstations,DC=online,DC=com"; break; case "Service Computers": MachineObjectOU.value="OU=Service Computers,OU=Workstations,DC=online,DC=com"; break; } } </script> <tr> <td colspan=2></td> <td> </td> <td id=PopupParent> <input type=text id=MachineObjectOU name=MachineObjectOU size=60 language=vbscript onpropertychange=ValidateDomainMembership accesskey=O> <input type="button" id=MachineObjectOUOptionalBtn hidefocus="1" value="â–¼" style="height:23; width:16; font-family: helvetica; font-size: 7pt; display: none;" onclick="JavaScript:HideUnHideComboBox();"> <div id="PopupBox" style="position:absolute; display:none; z-index:10000; width: 240px; left: 250px;" > <select size="6" id="MachineObjectOUOptional" style="width: 100%; border-style: none" onchange="JavaScript:MachineObjectOU.value = this.value;" onclick="javascript:HideUnHideComboBox();"> </select>
  11. I am trying to deploy Oracle SQL developer 64bit which comes with the jre files. How would I go about deploy the files out and placing a shortcut to the desktop? Any other ways would also work...
  12. Wondering if anyone knows the proper Update classifications to make the client Root Certificate updates (i.e. http://support.microsoft.com/kb/931125) available to deploy? Can't seem to find any documentation on exactly what classes to include. Here are my classification settings (Administration > Configure Site Components > Software Update Point): Doesn't look available in the All Software Update node.
  13. Hey guys I have a client who is required to partition their Windows 8.1 installation in three different partitions: C:(OS Partition) d:(SQLData Partition) E:(Client Data Partition) G:(CD-ROM) I Already know that I should not use multiple drives for OSD but this is the requirement I have been given... When I deploy my TS through PxE or USB Bootable Media all the drives are labeled correctly... C,D and E but if I Use Standalone USB Media then I end up with C, E and F and G as CDRom. I know that WinPE assigns a drive letter to the usb stick usually d: but not always so how can I set the USB Standalone media to act the same way as PxE and Usb Boot Media? is there a way to have PE set the USB drive to drives latter in the alphabet? s, t or w? Please help
  14. Hello, I am struggling with some reports from users of updates installing mid-day, randomly and not during their specified "off hours". Every month we have an ADR that targets a collection of ALL WINDOWS 7 Clients. It creates a new software update group, makes the update available 4 hours after the ADR runs, and the deadline is 10 days later. This rule runs at 2AM. The user experience is to Display updates in Software Center and show all notifications. Under Deadline Behavior Software Installation is checked and nothing else. The client computer has set work hours for 7-7 Every weekday. They have also checked the "Automatically install or uninstall required software and restart the computer only outside of business hours" There is no defined maintenance window on the collection since we have some 24 hour shifts. Am I missing something? Is there something else to check? Thanks! This is 2012 SP1 CU3
  15. Has anyone seen this before? This is preventing me from downloading updates during an ADR, and also preventing software groups from being made.
  16. Hello Everybody, I am new to SCCM 2012 and have been struggling with an issue for the past 3 days and am tired of hitting my head against a brick wall. Here I'm deploying Windows 7 x64 and it installed perfectly fine onto the required Hardware & VM. Although in both platforms the Task Sequence fails straight away with the exact same error in the SMSTS.log file. I cant make heads or tails of the actual log file and needs some help to decode the endless lines of code Can someone point me in the right direction?
  17. Is anyone else experiencing problems with the new WUA 7.6.7600.320 not communicating to the SCCM2012 SUP server? I was looking over the forums, but still not able to resolve my issue: http://www.windows-noob.com/forums/index.php?/topic/10968-wsus-kb2938066-and-its-effect-in-the-environment/?hl=7.6.7600.320 http://social.technet.microsoft.com/Forums/windowsserver/en-US/a006e173-2113-41c7-b119-cd1610414fe0/wsus-30-sp2-troubles-after-installing-kb2938066-0xc000000d?forum=winserverwsus Here is my scenario: Background 3 servers, all running Server2012 ss1 = SCCM2012 R2 CU2 SiteServer wsus/sup = Sccm2012 SUP epp = System Center Endpoint Protection Computers receive a GPO that does 2 things. 1. GPO puts the ccmsetup command line in the registry location HKLM\Software\Policies\Microsoft\ccmsetup 2. GPO puts the wsus server information in the registry location HKLM\Software\Policies\Microsoft\Windows\WindowsUpdate The wsus server web address is https://wsusServerURL:8531 Computers running WUA 7.6.7600.256 communicate fine with the SUP Computers running WUA 7.6.7600.320 cannot communicate with the SUP Issue is: When a computer has the WUA client version 7.6.7600.320 the computer cannot communicate with the wsus server. It can communicate with Microsoft Update website but that is not what I need. The error message that occurs is "Windows Update encountered an unknown error" Code 80072EFE ​ I am able to easily replicate this issue just by installing/uninstalling the 7.6.7600.320 WUA via the standalone/or Microsoft Updates website. I have loaded KB2937636 to the server2012 wsus/sup but that still did not fix the communication issue. I have since removed the KB2937636 from the 2012 server, because when the KB2937636 is installed on the sup server once the 7.6.7600.256 computers communicate with the server the WUA 7.6.7600.320 gets installed on the clients and then they stop communicating. Very Frustrating! Please any help would be greatly appreciated. Thanks ~ZbWinMan [uPDATE] I have attached my WindowsUpdate.log file. If you use CMTrace.exe you can clearly see that the computer talks fine at the beginning, then I installed WUA 7.6.7600.320 and All Communication breaks, then I uninstall to get back to 7.6.7600.256 and communication works again. NOTE: Color Text = works on 7.6.7600.256 Color Text = Install 7.6.7600.320 and breaks communication Color Text = Uninstall 7.6.7600.320 back to 7.6.7600.256 and communication works again on 7.6.7600.256 2014-10-03 00:09:28:491 348 974 AU AU received policy change subscription event 2014-10-03 09:47:42:978 348 974 AU AU setting next sqm report timeout to 2014-10-04 14:47:42 2014-10-03 10:52:15:593 348 974 AU ############# 2014-10-03 10:52:15:593 348 974 AU ## START ## AU: Search for updates 2014-10-03 10:52:15:593 348 974 AU ######### 2014-10-03 10:52:15:594 348 974 AU <<## SUBMITTED ## AU: Search for updates [CallId = {D53E4C3B-12BA-4892-A0CD-EF073EF4B1A1}] 2014-10-03 10:52:15:595 348 110c Agent ************* 2014-10-03 10:52:15:595 348 110c Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdates] 2014-10-03 10:52:15:595 348 110c Agent ********* 2014-10-03 10:52:15:595 348 110c Agent * Online = Yes; Ignore download priority = No 2014-10-03 10:52:15:595 348 110c Agent * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1" 2014-10-03 10:52:15:595 348 110c Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed 2014-10-03 10:52:15:595 348 110c Agent * Search Scope = {Machine} 2014-10-03 10:52:15:775 348 110c Setup Checking for agent SelfUpdate 2014-10-03 10:52:15:795 348 110c Setup Client version: Core: 7.6.7600.256 Aux: 7.6.7600.256 2014-10-03 10:52:15:805 348 110c Misc Validating signature for C:\windows\SoftwareDistribution\SelfUpdate\wuident.cab: 2014-10-03 10:52:15:938 348 110c Misc Microsoft signed: Yes 2014-10-03 10:52:16:223 348 110c Misc Validating signature for C:\windows\SoftwareDistribution\SelfUpdate\wuident.cab: 2014-10-03 10:52:16:238 348 110c Misc Microsoft signed: Yes 2014-10-03 10:52:16:342 348 110c Misc Validating signature for C:\windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab: 2014-10-03 10:52:16:406 348 110c Misc Microsoft signed: Yes 2014-10-03 10:52:16:409 348 110c Misc Validating signature for C:\windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab: 2014-10-03 10:52:16:419 348 110c Misc Microsoft signed: Yes 2014-10-03 10:52:16:667 348 110c Setup Determining whether a new setup handler needs to be downloaded 2014-10-03 10:52:16:685 348 110c Setup SelfUpdate handler update required: Current version: 7.6.7600.320, required version: 7.6.7600.256 2014-10-03 10:52:16:699 348 110c Setup Evaluating applicability of setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256" 2014-10-03 10:52:18:100 348 110c Setup Setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed. 2014-10-03 10:52:18:100 348 110c Setup Evaluating applicability of setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" 2014-10-03 10:52:18:185 348 110c Setup Setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed. 2014-10-03 10:52:18:185 348 110c Setup Evaluating applicability of setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" 2014-10-03 10:52:18:270 348 110c Setup Setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed. 2014-10-03 10:52:18:271 348 110c Setup SelfUpdate check completed. SelfUpdate is NOT required. 2014-10-03 10:52:44:416 348 110c PT +++++++++++ PT: Synchronizing server updates +++++++++++ 2014-10-03 10:52:44:419 348 110c PT + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = https://MYsupServer:8531/ClientWebService/client.asmx 2014-10-03 10:52:44:718 348 110c PT WARNING: Cached cookie has expired or new PID is available 2014-10-03 10:52:44:725 348 110c PT Initializing simple targeting cookie, clientId = 69b19ce5-7e10-43f6-a9bb-2a22b15bb822, target group = , DNS name = COMPUTERNAME 2014-10-03 10:52:44:725 348 110c PT Server URL = https://MYsupServer:8531/SimpleAuthWebService/SimpleAuth.asmx 2014-10-03 10:52:58:363 348 110c Agent WARNING: Failed to evaluate Installed rule, updateId = {189A8F50-0C3A-4FDF-8BC2-BC23A3EB11FB}.101, hr = 80242013 2014-10-03 10:53:03:705 348 110c PT +++++++++++ PT: Synchronizing extended update info +++++++++++ 2014-10-03 10:53:03:706 348 110c PT + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = https://MYsupServer:8531/ClientWebService/client.asmx 2014-10-03 10:53:13:312 348 110c Agent * Found 0 updates and 80 categories in search; evaluated appl. rules of 2429 out of 3873 deployed entities 2014-10-03 10:53:13:467 348 110c Agent ********* 2014-10-03 10:53:13:467 348 110c Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdates] 2014-10-03 10:53:13:467 348 110c Agent ************* 2014-10-03 10:53:13:613 348 1ea8 AU >>## RESUMED ## AU: Search for updates [CallId = {D53E4C3B-12BA-4892-A0CD-EF073EF4B1A1}] 2014-10-03 10:53:13:613 348 1ea8 AU # 0 updates detected 2014-10-03 10:53:13:614 348 1ea8 AU ######### 2014-10-03 10:53:13:614 348 1ea8 AU ## END ## AU: Search for updates [CallId = {D53E4C3B-12BA-4892-A0CD-EF073EF4B1A1}] 2014-10-03 10:53:13:614 348 1ea8 AU ############# 2014-10-03 10:53:13:637 348 1ea8 AU Successfully wrote event for AU health state:0 2014-10-03 10:53:13:637 348 1ea8 AU Featured notifications is disabled. 2014-10-03 10:53:13:637 348 1ea8 AU AU setting next detection timeout to 2014-10-04 10:17:32 2014-10-03 10:53:13:638 348 1ea8 AU Setting AU scheduled install time to 2014-10-03 17:00:00 2014-10-03 10:53:13:638 348 1ea8 AU Successfully wrote event for AU health state:0 2014-10-03 10:53:13:672 348 1ea8 AU Successfully wrote event for AU health state:0 2014-10-03 10:53:18:455 348 110c Report REPORT EVENT: {10621242-BF42-4624-8435-2867D7F3B4B3} 2014-10-03 10:53:13:385-0500 1 147 101 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdates Success Software Synchronization Windows Update Client successfully detected 0 updates. 2014-10-03 10:53:18:455 348 110c Report REPORT EVENT: {A3E7F842-FF27-455D-ABE6-3032507F1029} 2014-10-03 10:53:13:466-0500 1 156 101 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdates Success Pre-Deployment Check Reporting client status. 2014-10-03 10:53:18:455 348 110c Report CWERReporter finishing event handling. (00000000) 2014-10-03 12:00:09:779 348 974 AU Forced install timer expired for scheduled install 2014-10-03 12:00:09:779 348 974 AU UpdateDownloadProperties: 0 download(s) are still in progress. 2014-10-03 12:00:09:779 348 974 AU Setting AU scheduled install time to 2014-10-04 17:00:00 2014-10-03 12:00:09:789 348 974 AU Successfully wrote event for AU health state:0 2014-10-03 12:00:14:789 348 1c80 Report CWERReporter finishing event handling. (00000000) 2014-10-03 12:35:13:963 348 974 AU AU received policy change subscription event 2014-10-03 13:33:36:427 3660 1bb0 Misc =========== Logging initialized (build: 7.6.7600.320, tz: -0500) =========== 2014-10-03 13:33:36:427 3660 1bb0 Misc = Process: C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\wusetup.exe 2014-10-03 13:33:36:427 3660 1bb0 Setup Windows Update Client standalone setup : resource dll path is C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\en\wusetup.exe.mui 2014-10-03 13:33:36:427 3660 1bb0 Setup Windows Update Agent Client Setup succeeded installing product root. 2014-10-03 13:33:36:427 3660 1bb0 Setup Evaluating CBS package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-Core-TopLevel.cab" 2014-10-03 13:33:38:158 3660 1bb0 Setup Package will be installed 2014-10-03 13:33:38:158 3660 1bb0 Setup Evaluating CBS package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-ActiveX.cab" 2014-10-03 13:33:38:626 3660 1bb0 Setup Package will be installed 2014-10-03 13:33:38:626 3660 1bb0 Setup Evaluating CBS package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-Aux-TopLevel.cab" 2014-10-03 13:33:38:767 3660 1bb0 Setup Package will be installed 2014-10-03 13:33:38:969 348 974 AU ########### AU: Uninitializing Automatic Updates ########### 2014-10-03 13:33:39:110 348 974 Report CWERReporter finishing event handling. (00000000) 2014-10-03 13:33:39:578 348 974 Setup Service shutting down while setup is in progress. Attempting to unload core client binaries 2014-10-03 13:33:39:578 348 974 Setup Attempting to close open Windows Update explorer windows 2014-10-03 13:33:40:951 348 974 Setup Attempting to unload unused libraries from svchost 2014-10-03 13:33:44:585 348 974 Setup Attempting to unload binaries from event log service 2014-10-03 13:33:44:695 348 974 Service ********* 2014-10-03 13:33:44:695 348 974 Service ** END ** Service: Service exit [Exit code = 0x240001] 2014-10-03 13:33:44:695 348 974 Service ************* 2014-10-03 13:33:44:991 3660 1bb0 Setup Installing CBS package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-Core-TopLevel.cab" 2014-10-03 13:34:21:529 3660 1bb0 Setup Install of setup package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-Core-TopLevel.cab" succeeded 2014-10-03 13:34:21:529 3660 1bb0 Setup Installing CBS package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-ActiveX.cab" 2014-10-03 13:34:28:097 3660 1bb0 Setup Install of setup package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-ActiveX.cab" succeeded 2014-10-03 13:34:28:097 3660 1bb0 Setup Installing CBS package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-Aux-TopLevel.cab" 2014-10-03 13:34:42:761 3660 1bb0 Setup Install of setup package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-Aux-TopLevel.cab" succeeded and requires reboot 2014-10-03 13:34:42:792 348 1ce4 Misc =========== Logging initialized (build: 7.6.7600.320, tz: -0500) =========== 2014-10-03 13:34:42:792 348 1ce4 Misc = Process: C:\windows\system32\svchost.exe 2014-10-03 13:34:42:792 348 1ce4 Misc = Module: c:\windows\system32\wuaueng.dll 2014-10-03 13:34:42:792 348 1ce4 Service ************* 2014-10-03 13:34:42:792 348 1ce4 Service ** START ** Service: Service startup 2014-10-03 13:34:42:792 348 1ce4 Service ********* 2014-10-03 13:34:42:808 348 1ce4 Agent * WU client version 7.6.7600.320 2014-10-03 13:34:42:808 348 1ce4 Agent * Base directory: C:\windows\SoftwareDistribution 2014-10-03 13:34:42:808 348 1ce4 Agent * Access type: No proxy 2014-10-03 13:34:42:823 348 1ce4 Agent * Network state: Connected 2014-10-03 13:34:46:879 3660 1bb0 Setup wusetup has finished. Exit code is bc2. Reboot is needed 2014-10-03 13:35:27:985 348 1ce4 Report CWERReporter::Init succeeded 2014-10-03 13:35:27:985 348 1ce4 Agent *********** Agent: Initializing Windows Update Agent *********** 2014-10-03 13:35:27:985 348 1ce4 Agent * Prerequisite roots succeeded. 2014-10-03 13:35:27:985 348 1ce4 Agent *********** Agent: Initializing global settings cache *********** 2014-10-03 13:35:27:985 348 1ce4 Agent * WSUS server: https://MYsupServer:8531 2014-10-03 13:35:27:985 348 1ce4 Agent * WSUS status server: https://MYsupServer:8531 2014-10-03 13:35:28:001 348 1ce4 Agent * Target group: (Unassigned Computers) 2014-10-03 13:35:28:001 348 1ce4 Agent * Windows Update access disabled: No 2014-10-03 13:35:28:032 348 1ce4 DnldMgr Download manager restoring 0 downloads 2014-10-03 13:35:28:250 348 1ce4 AU ########### AU: Initializing Automatic Updates ########### 2014-10-03 13:35:28:250 348 1ce4 AU # WSUS server: https://MYsupServer:8531 2014-10-03 13:35:28:250 348 1ce4 AU # Detection frequency: 22 2014-10-03 13:35:28:250 348 1ce4 AU # Approval type: Scheduled (Policy) 2014-10-03 13:35:28:250 348 1ce4 AU # Scheduled install day/time: Every day at 12:00 2014-10-03 13:35:28:250 348 1ce4 AU # Auto-install minor updates: Yes (User preference) 2014-10-03 13:35:28:250 348 1ce4 AU # Will interact with non-admins (Non-admins are elevated (User preference)) 2014-10-03 13:35:28:250 348 1ce4 AU Setting AU scheduled install time to 2014-10-04 17:00:00 2014-10-03 13:35:28:828 348 1ce4 Report *********** Report: Initializing static reporting data *********** 2014-10-03 13:35:28:828 348 1ce4 Report * OS Version = 6.1.7601.1.0.65792 2014-10-03 13:35:28:828 348 1ce4 Report * OS Product Type = 0x00000004 2014-10-03 13:35:28:874 348 1ce4 Report * Computer Brand = Dell Inc. 2014-10-03 13:35:28:874 348 1ce4 Report * Computer Model = OptiPlex 755 2014-10-03 13:35:28:874 348 1ce4 Report * Bios Revision = A19 2014-10-03 13:35:28:874 348 1ce4 Report * Bios Name = Phoenix ROM BIOS PLUS Version 1.10 A19 2014-10-03 13:35:28:874 348 1ce4 Report * Bios Release Date = 2011-05-31T00:00:00 2014-10-03 13:35:28:874 348 1ce4 Report * Locale ID = 1033 2014-10-03 13:35:28:906 348 1ce4 AU Successfully wrote event for AU health state:0 2014-10-03 13:35:28:906 348 1ce4 AU Initializing featured updates 2014-10-03 13:35:28:906 348 1ce4 AU Found 0 cached featured updates 2014-10-03 13:35:28:906 348 1ce4 AU Successfully wrote event for AU health state:0 2014-10-03 13:35:28:906 348 1ce4 AU Successfully wrote event for AU health state:0 2014-10-03 13:35:28:906 348 1ce4 AU AU finished delayed initialization 2014-10-03 13:35:28:906 348 1ce4 AU ############# 2014-10-03 13:35:28:906 348 1ce4 AU ## START ## AU: Search for updates 2014-10-03 13:35:28:906 348 1ce4 AU ######### 2014-10-03 13:35:28:906 348 1ce4 AU <<## SUBMITTED ## AU: Search for updates [CallId = {BF7CD224-7FFD-4488-80E9-75E19E1B09B0}] 2014-10-03 13:35:28:906 348 f48 Agent ************* 2014-10-03 13:35:28:906 348 f48 Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdates] 2014-10-03 13:35:28:906 348 f48 Agent ********* 2014-10-03 13:35:28:906 348 f48 Agent * Online = No; Ignore download priority = No 2014-10-03 13:35:28:906 348 f48 Agent * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1" 2014-10-03 13:35:28:906 348 f48 Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed 2014-10-03 13:35:28:906 348 f48 Agent * Search Scope = {Machine} 2014-10-03 13:35:52:087 348 f48 Agent * Found 0 updates and 80 categories in search; evaluated appl. rules of 241 out of 3873 deployed entities 2014-10-03 13:35:52:212 348 f48 Agent ********* 2014-10-03 13:35:52:212 348 f48 Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdates] 2014-10-03 13:35:52:212 348 f48 Agent ************* 2014-10-03 13:35:52:274 348 1764 AU >>## RESUMED ## AU: Search for updates [CallId = {BF7CD224-7FFD-4488-80E9-75E19E1B09B0}] 2014-10-03 13:35:52:274 348 1764 AU # 0 updates detected 2014-10-03 13:35:52:274 348 1764 AU ######### 2014-10-03 13:35:52:274 348 1764 AU ## END ## AU: Search for updates [CallId = {BF7CD224-7FFD-4488-80E9-75E19E1B09B0}] 2014-10-03 13:35:52:274 348 1764 AU ############# 2014-10-03 13:35:52:274 348 1764 AU Featured notifications is disabled. 2014-10-03 13:35:52:274 348 1764 AU Setting AU scheduled install time to 2014-10-04 17:00:00 2014-10-03 13:35:52:274 348 1764 AU Successfully wrote event for AU health state:0 2014-10-03 13:35:52:274 348 1764 AU Successfully wrote event for AU health state:0 2014-10-03 13:35:52:306 348 f48 Report REPORT EVENT: {31104A95-9850-454E-8AB8-B4F46423232E} 2014-10-03 13:35:28:906-0500 1 202 102 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdates Success Content Install Reboot completed. 2014-10-03 13:35:52:430 348 f48 Report CWERReporter finishing event handling. (00000000) 2014-10-03 13:35:57:282 348 f48 Report CWERReporter finishing event handling. (00000000) 2014-10-03 13:36:31:898 348 1ce4 Shutdwn user declined update at shutdown 2014-10-03 13:36:31:898 348 1ce4 AU Successfully wrote event for AU health state:0 2014-10-03 13:36:31:914 348 1ce4 AU AU initiates service shutdown 2014-10-03 13:36:31:914 348 1ce4 AU ########### AU: Uninitializing Automatic Updates ########### 2014-10-03 13:36:31:945 348 1ce4 Report CWERReporter finishing event handling. (00000000) 2014-10-03 13:36:32:148 348 1ce4 Service ********* 2014-10-03 13:36:32:148 348 1ce4 Service ** END ** Service: Service exit [Exit code = 0x240001] 2014-10-03 13:36:32:148 348 1ce4 Service ************* 2014-10-03 13:41:35:819 348 1198 Misc =========== Logging initialized (build: 7.6.7600.320, tz: -0500) =========== 2014-10-03 13:41:35:850 348 1198 Misc = Process: C:\windows\system32\svchost.exe 2014-10-03 13:41:35:882 348 1198 Misc = Module: c:\windows\system32\wuaueng.dll 2014-10-03 13:41:35:819 348 1198 Service ************* 2014-10-03 13:41:35:913 348 1198 Service ** START ** Service: Service startup 2014-10-03 13:41:35:913 348 1198 Service ********* 2014-10-03 13:41:39:110 348 1198 Agent * WU client version 7.6.7600.320 2014-10-03 13:41:39:625 348 1198 Agent * Base directory: C:\windows\SoftwareDistribution 2014-10-03 13:41:39:874 348 1198 Agent * Access type: No proxy 2014-10-03 13:41:39:890 348 1198 Agent * Network state: Connected 2014-10-03 13:42:19:178 348 1180 Report CWERReporter::Init succeeded 2014-10-03 13:42:19:178 348 1180 Agent *********** Agent: Initializing Windows Update Agent *********** 2014-10-03 13:42:19:178 348 1180 Agent * Prerequisite roots succeeded. 2014-10-03 13:42:19:178 348 1180 Agent *********** Agent: Initializing global settings cache *********** 2014-10-03 13:42:19:178 348 1180 Agent * WSUS server: https://MYsupServer:8531 2014-10-03 13:42:19:178 348 1180 Agent * WSUS status server: https://MYsupServer:8531 2014-10-03 13:42:19:178 348 1180 Agent * Target group: (Unassigned Computers) 2014-10-03 13:42:19:178 348 1180 Agent * Windows Update access disabled: No 2014-10-03 13:42:19:225 348 1180 DnldMgr Download manager restoring 0 downloads 2014-10-03 13:42:19:443 348 1198 Report *********** Report: Initializing static reporting data *********** 2014-10-03 13:42:19:443 348 1198 Report * OS Version = 6.1.7601.1.0.65792 2014-10-03 13:42:19:443 348 1198 Report * OS Product Type = 0x00000004 2014-10-03 13:42:19:443 348 1198 Report * Computer Brand = Dell Inc. 2014-10-03 13:42:19:443 348 1198 Report * Computer Model = OptiPlex 755 2014-10-03 13:42:19:443 348 1198 Report * Bios Revision = A19 2014-10-03 13:42:19:443 348 1198 Report * Bios Name = Phoenix ROM BIOS PLUS Version 1.10 A19 2014-10-03 13:42:19:443 348 1198 Report * Bios Release Date = 2011-05-31T00:00:00 2014-10-03 13:42:19:443 348 1198 Report * Locale ID = 1033 2014-10-03 13:42:23:170 348 10b8 PT WARNING: Cached cookie has expired or new PID is available 2014-10-03 13:42:23:170 348 10b8 PT Initializing simple targeting cookie, clientId = 69b19ce5-7e10-43f6-a9bb-2a22b15bb822, target group = , DNS name = COMPUTERNAME 2014-10-03 13:42:23:170 348 10b8 PT Server URL = https://MYsupServer:8531/SimpleAuthWebService/SimpleAuth.asmx 2014-10-03 13:42:23:233 348 10b8 Misc WARNING: Send failed with hr = 80072efe. 2014-10-03 13:42:23:233 348 10b8 Misc WARNING: SendRequest failed with hr = 80072efe. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <> 2014-10-03 13:42:23:233 348 10b8 Misc FATAL: SOAP/WinHttp - SendRequest: SendRequestUsingProxy failed. error 0x80072efe 2014-10-03 13:42:23:233 348 10b8 PT + Last proxy send request failed with hr = 0x80072EFE, HTTP status code = 0 2014-10-03 13:42:23:233 348 10b8 PT + Caller provided credentials = No 2014-10-03 13:42:23:233 348 10b8 PT + Impersonate flags = 0 2014-10-03 13:42:23:233 348 10b8 PT + Possible authorization schemes used = 2014-10-03 13:42:23:233 348 10b8 PT WARNING: GetAuthorizationCookie failure, error = 0x80072EFE, soap client error = 5, soap error code = 0, HTTP status code = 200 2014-10-03 13:42:23:233 348 10b8 PT WARNING: Failed to initialize Simple Targeting Cookie: 0x80072efe 2014-10-03 13:42:23:233 348 10b8 PT WARNING: PopulateAuthCookies failed: 0x80072efe 2014-10-03 13:42:23:233 348 10b8 PT WARNING: RefreshCookie failed: 0x80072efe 2014-10-03 13:42:23:233 348 10b8 PT WARNING: RefreshPTState failed: 0x80072efe 2014-10-03 13:42:23:233 348 10b8 PT WARNING: PTError: 0x80072efe 2014-10-03 13:42:23:233 348 10b8 Report WARNING: Reporter failed to upload events with hr = 80072efe. 2014-10-03 13:42:23:264 348 10b8 PT WARNING: Cached cookie has expired or new PID is available 2014-10-03 13:42:23:264 348 10b8 PT Initializing simple targeting cookie, clientId = 69b19ce5-7e10-43f6-a9bb-2a22b15bb822, target group = , DNS name = COMPUTERNAME 2014-10-03 13:42:23:264 348 10b8 PT Server URL = https://MYsupServer:8531/SimpleAuthWebService/SimpleAuth.asmx 2014-10-03 13:42:23:280 348 10b8 Misc WARNING: Send failed with hr = 80072efe. 2014-10-03 13:42:23:280 348 10b8 Misc WARNING: SendRequest failed with hr = 80072efe. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <> 2014-10-03 13:42:23:280 348 10b8 Misc FATAL: SOAP/WinHttp - SendRequest: SendRequestUsingProxy failed. error 0x80072efe 2014-10-03 13:42:23:280 348 10b8 PT + Last proxy send request failed with hr = 0x80072EFE, HTTP status code = 0 2014-10-03 13:42:23:280 348 10b8 PT + Caller provided credentials = No 2014-10-03 13:42:23:280 348 10b8 PT + Impersonate flags = 0 2014-10-03 13:42:23:280 348 10b8 PT + Possible authorization schemes used = 2014-10-03 13:42:23:280 348 10b8 PT WARNING: GetAuthorizationCookie failure, error = 0x80072EFE, soap client error = 5, soap error code = 0, HTTP status code = 200 2014-10-03 13:42:23:280 348 10b8 PT WARNING: Failed to initialize Simple Targeting Cookie: 0x80072efe 2014-10-03 13:42:23:280 348 10b8 PT WARNING: PopulateAuthCookies failed: 0x80072efe 2014-10-03 13:42:23:280 348 10b8 PT WARNING: RefreshCookie failed: 0x80072efe 2014-10-03 13:42:23:280 348 10b8 PT WARNING: RefreshPTState failed: 0x80072efe 2014-10-03 13:42:23:280 348 10b8 PT WARNING: PTError: 0x80072efe 2014-10-03 13:42:23:280 348 10b8 Report WARNING: Reporter failed to upload events with hr = 80072efe. 2014-10-03 13:42:24:590 348 10b8 Report CWERReporter finishing event handling. (00000000) 2014-10-03 13:42:27:709 348 1198 AU ########### AU: Initializing Automatic Updates ########### 2014-10-03 13:42:27:709 348 1198 AU # WSUS server: https://MYsupServer:8531 2014-10-03 13:42:27:709 348 1198 AU # Detection frequency: 22 2014-10-03 13:42:27:709 348 1198 AU # Approval type: Scheduled (Policy) 2014-10-03 13:42:27:709 348 1198 AU # Scheduled install day/time: Every day at 12:00 2014-10-03 13:42:27:709 348 1198 AU # Auto-install minor updates: Yes (User preference) 2014-10-03 13:42:27:709 348 1198 AU # Will interact with non-admins (Non-admins are elevated (User preference)) 2014-10-03 13:42:27:740 348 1198 AU Setting AU scheduled install time to 2014-10-04 17:00:00 2014-10-03 13:42:27:740 348 1198 AU Successfully wrote event for AU health state:0 2014-10-03 13:42:27:740 348 1198 AU Initializing featured updates 2014-10-03 13:42:27:740 348 1198 AU Found 0 cached featured updates 2014-10-03 13:42:27:740 348 1198 AU Successfully wrote event for AU health state:0 2014-10-03 13:42:27:740 348 1198 AU Successfully wrote event for AU health state:0 2014-10-03 13:42:27:740 348 1198 AU AU finished delayed initialization 2014-10-03 13:42:27:740 348 1198 AU ############# 2014-10-03 13:42:27:740 348 1198 AU ## START ## AU: Search for updates 2014-10-03 13:42:27:740 348 1198 AU ######### 2014-10-03 13:42:27:787 348 1198 AU <<## SUBMITTED ## AU: Search for updates [CallId = {8D4EF48B-DFA3-4A50-9D6D-E0E41DAD95A4}] 2014-10-03 13:42:27:787 348 10b8 Agent ************* 2014-10-03 13:42:27:787 348 10b8 Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdates] 2014-10-03 13:42:27:787 348 10b8 Agent ********* 2014-10-03 13:42:27:787 348 10b8 Agent * Online = No; Ignore download priority = No 2014-10-03 13:42:27:787 348 10b8 Agent * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1" 2014-10-03 13:42:27:787 348 10b8 Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed 2014-10-03 13:42:27:787 348 10b8 Agent * Search Scope = {Machine} 2014-10-03 13:42:41:979 348 10b8 Agent * Found 0 updates and 80 categories in search; evaluated appl. rules of 241 out of 3873 deployed entities 2014-10-03 13:42:42:011 348 10b8 Agent ********* 2014-10-03 13:42:42:011 348 10b8 Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdates] 2014-10-03 13:42:42:011 348 10b8 Agent ************* 2014-10-03 13:42:42:057 348 e60 AU >>## RESUMED ## AU: Search for updates [CallId = {8D4EF48B-DFA3-4A50-9D6D-E0E41DAD95A4}] 2014-10-03 13:42:42:057 348 e60 AU # 0 updates detected 2014-10-03 13:42:42:057 348 e60 AU ######### 2014-10-03 13:42:42:057 348 e60 AU ## END ## AU: Search for updates [CallId = {8D4EF48B-DFA3-4A50-9D6D-E0E41DAD95A4}] 2014-10-03 13:42:42:057 348 e60 AU ############# 2014-10-03 13:42:42:057 348 e60 AU Featured notifications is disabled. 2014-10-03 13:42:42:057 348 e60 AU Setting AU scheduled install time to 2014-10-04 17:00:00 2014-10-03 13:42:42:057 348 e60 AU Successfully wrote event for AU health state:0 2014-10-03 13:42:42:057 348 e60 AU Successfully wrote event for AU health state:0 2014-10-03 13:42:42:057 348 10b8 Report REPORT EVENT: {1A410313-9CBD-49DC-B27B-E6063F194DA8} 2014-10-03 13:42:27:740-0500 1 202 102 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdates Success Content Install Reboot completed. 2014-10-03 13:42:42:057 348 10b8 Report CWERReporter finishing event handling. (00000000) 2014-10-03 13:42:47:065 348 10b8 Report CWERReporter finishing event handling. (00000000) 2014-10-03 13:43:24:823 348 844 AU Triggering AU detection through DetectNow API 2014-10-03 13:43:24:823 348 844 AU Triggering Online detection (interactive) 2014-10-03 13:43:24:823 348 1198 AU ############# 2014-10-03 13:43:24:823 348 1198 AU ## START ## AU: Search for updates 2014-10-03 13:43:24:823 348 1198 AU ######### 2014-10-03 13:43:24:823 348 1198 AU <<## SUBMITTED ## AU: Search for updates [CallId = {812362EC-545B-449C-9F0D-A0E7946F17A1}] 2014-10-03 13:43:24:823 348 10b8 Agent ************* 2014-10-03 13:43:24:823 348 10b8 Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdates] 2014-10-03 13:43:24:823 348 10b8 Agent ********* 2014-10-03 13:43:24:823 348 10b8 Agent * Online = Yes; Ignore download priority = No 2014-10-03 13:43:24:823 348 10b8 Agent * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1" 2014-10-03 13:43:24:823 348 10b8 Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed 2014-10-03 13:43:24:823 348 10b8 Agent * Search Scope = {Machine} 2014-10-03 13:43:24:823 348 10b8 Setup Checking for agent SelfUpdate 2014-10-03 13:43:24:823 348 10b8 Setup Client version: Core: 7.6.7600.320 Aux: 7.6.7600.320 2014-10-03 13:43:24:870 348 10b8 Misc WARNING: Send failed with hr = 80072efe. 2014-10-03 13:43:24:870 348 10b8 Misc WARNING: SendRequest failed with hr = 80072efe. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <> 2014-10-03 13:43:24:870 348 10b8 Misc WARNING: WinHttp: SendRequestUsingProxy failed for <https://MYsupServer:8531/selfupdate/wuident.cab>. error 0x80072efe 2014-10-03 13:43:24:870 348 10b8 Misc WARNING: WinHttp: SendRequestToServerForFileInformation MakeRequest failed. error 0x80072efe 2014-10-03 13:43:24:870 348 10b8 Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x80072efe 2014-10-03 13:43:24:870 348 10b8 Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x80072efe 2014-10-03 13:43:24:901 348 10b8 Misc WARNING: Send failed with hr = 80072efe. 2014-10-03 13:43:24:901 348 10b8 Misc WARNING: SendRequest failed with hr = 80072efe. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <> 2014-10-03 13:43:24:901 348 10b8 Misc WARNING: WinHttp: SendRequestUsingProxy failed for <https://MYsupServer:8531/selfupdate/wuident.cab>. error 0x80072efe 2014-10-03 13:43:24:901 348 10b8 Misc WARNING: WinHttp: SendRequestToServerForFileInformation MakeRequest failed. error 0x80072efe 2014-10-03 13:43:24:901 348 10b8 Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x80072efe 2014-10-03 13:43:24:901 348 10b8 Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x80072efe 2014-10-03 13:43:24:932 348 10b8 Misc WARNING: Send failed with hr = 80072efe. 2014-10-03 13:43:24:932 348 10b8 Misc WARNING: SendRequest failed with hr = 80072efe. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <> 2014-10-03 13:43:24:932 348 10b8 Misc WARNING: WinHttp: SendRequestUsingProxy failed for <https://MYsupServer:8531/selfupdate/wuident.cab>. error 0x80072efe 2014-10-03 13:43:24:932 348 10b8 Misc WARNING: WinHttp: SendRequestToServerForFileInformation MakeRequest failed. error 0x80072efe 2014-10-03 13:43:24:932 348 10b8 Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x80072efe 2014-10-03 13:43:24:932 348 10b8 Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x80072efe 2014-10-03 13:43:24:963 348 10b8 Misc WARNING: Send failed with hr = 80072efe. 2014-10-03 13:43:24:963 348 10b8 Misc WARNING: SendRequest failed with hr = 80072efe. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <> 2014-10-03 13:43:24:963 348 10b8 Misc WARNING: WinHttp: SendRequestUsingProxy failed for <https://MYsupServer:8531/selfupdate/wuident.cab>. error 0x80072efe 2014-10-03 13:43:24:963 348 10b8 Misc WARNING: WinHttp: SendRequestToServerForFileInformation MakeRequest failed. error 0x80072efe 2014-10-03 13:43:24:963 348 10b8 Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x80072efe 2014-10-03 13:43:24:963 348 10b8 Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x80072efe 2014-10-03 13:43:24:963 348 10b8 Misc WARNING: DownloadFileInternal failed for https://MYsupServer:8531/selfupdate/wuident.cab: error 0x80072efe 2014-10-03 13:43:24:963 348 10b8 Setup FATAL: DownloadCab failed, err = 0x80072EFE 2014-10-03 13:43:24:963 348 10b8 Setup WARNING: SelfUpdate check failed to download package information, error = 0x80072EFE 2014-10-03 13:43:24:963 348 10b8 Setup FATAL: SelfUpdate check failed, err = 0x80072EFE 2014-10-03 13:43:24:963 348 10b8 Agent * WARNING: Skipping scan, self-update check returned 0x80072EFE 2014-10-03 13:43:24:963 348 10b8 Agent * WARNING: Exit code = 0x80072EFE 2014-10-03 13:43:24:963 348 10b8 Agent ********* 2014-10-03 13:43:24:963 348 10b8 Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdates] 2014-10-03 13:43:24:963 348 10b8 Agent ************* 2014-10-03 13:43:24:963 348 10b8 Agent WARNING: WU client failed Searching for update with error 0x80072efe 2014-10-03 13:43:24:963 348 e60 AU >>## RESUMED ## AU: Search for updates [CallId = {812362EC-545B-449C-9F0D-A0E7946F17A1}] 2014-10-03 13:43:24:963 348 e60 AU # WARNING: Search callback failed, result = 0x80072EFE 2014-10-03 13:43:24:963 348 e60 AU # WARNING: Failed to find updates with error code 80072EFE 2014-10-03 13:43:24:963 348 e60 AU ######### 2014-10-03 13:43:24:963 348 e60 AU ## END ## AU: Search for updates [CallId = {812362EC-545B-449C-9F0D-A0E7946F17A1}] 2014-10-03 13:43:24:963 348 e60 AU ############# 2014-10-03 13:43:24:963 348 e60 AU Successfully wrote event for AU health state:0 2014-10-03 13:43:24:963 348 e60 AU AU setting next detection timeout to 2014-10-03 23:43:24 2014-10-03 13:43:24:963 348 e60 AU Setting AU scheduled install time to 2014-10-04 17:00:00 2014-10-03 13:43:24:963 348 e60 AU Successfully wrote event for AU health state:0 2014-10-03 13:43:24:963 348 e60 AU Successfully wrote event for AU health state:0 2014-10-03 13:43:29:970 348 10b8 Report REPORT EVENT: {8AC60D85-CD65-4486-85E7-30C892DB5E07} 2014-10-03 13:43:24:963-0500 1 148 101 {D67661EB-2423-451D-BF5D-13199E37DF28} 1 80072efe SelfUpdate Failure Software Synchronization Windows Update Client failed to detect with error 0x80072efe. 2014-10-03 13:43:30:485 348 10b8 Report CWERReporter::HandleEvents - WER report upload completed with status 0x8 2014-10-03 13:43:30:485 348 10b8 Report WER Report sent: 7.6.7600.320 0x80072efe D67661EB-2423-451D-BF5D-13199E37DF28 Scan 101 Managed 2014-10-03 13:43:30:485 348 10b8 Report CWERReporter finishing event handling. (00000000) 2014-10-03 13:52:03:385 348 1198 AU AU received policy change subscription event 2014-10-03 13:52:33:414 1608 b38 Misc =========== Logging initialized (build: 7.6.7600.320, tz: -0500) =========== 2014-10-03 13:52:33:414 1608 b38 Misc = Process: C:\windows\CCM\CcmExec.exe 2014-10-03 13:52:33:414 1608 b38 Misc = Module: C:\Windows\system32\wuapi.dll 2014-10-03 13:52:33:414 1608 b38 COMAPI ------------- 2014-10-03 13:52:33:414 1608 b38 COMAPI -- START -- COMAPI: Search [ClientId = CcmExec] 2014-10-03 13:52:33:414 1608 b38 COMAPI --------- 2014-10-03 13:52:33:430 348 10b8 Agent ************* 2014-10-03 13:52:33:430 348 10b8 Agent ** START ** Agent: Finding updates [CallerId = CcmExec] 2014-10-03 13:52:33:430 348 10b8 Agent ********* 2014-10-03 13:52:33:430 348 10b8 Agent * Include potentially superseded updates 2014-10-03 13:52:33:430 348 10b8 Agent * Online = Yes; Ignore download priority = Yes 2014-10-03 13:52:33:430 348 10b8 Agent * Criteria = "(DeploymentAction=* AND Type='Software') OR (DeploymentAction=* AND Type='Driver')" 2014-10-03 13:52:33:430 348 10b8 Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed 2014-10-03 13:52:33:430 348 10b8 Agent * Search Scope = {Machine} 2014-10-03 13:52:33:430 1608 b38 COMAPI <<-- SUBMITTED -- COMAPI: Search [ClientId = CcmExec] 2014-10-03 13:52:36:331 348 10b8 PT +++++++++++ PT: Synchronizing server updates +++++++++++ 2014-10-03 13:52:36:331 348 10b8 PT + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = https://MYsupServer:8531/ClientWebService/client.asmx 2014-10-03 13:52:36:347 348 10b8 PT WARNING: Cached cookie has expired or new PID is available 2014-10-03 13:52:36:347 348 10b8 PT Initializing simple targeting cookie, clientId = 69b19ce5-7e10-43f6-a9bb-2a22b15bb822, target group = , DNS name = COMPUTERNAME 2014-10-03 13:52:36:347 348 10b8 PT Server URL = https://MYsupServer:8531/SimpleAuthWebService/SimpleAuth.asmx 2014-10-03 13:52:36:363 348 10b8 Misc WARNING: Send failed with hr = 80072efe. 2014-10-03 13:52:36:363 348 10b8 Misc WARNING: SendRequest failed with hr = 80072efe. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <> 2014-10-03 13:52:36:363 348 10b8 Misc FATAL: SOAP/WinHttp - SendRequest: SendRequestUsingProxy failed. error 0x80072efe 2014-10-03 13:52:36:363 348 10b8 PT + Last proxy send request failed with hr = 0x80072EFE, HTTP status code = 0 2014-10-03 13:52:36:363 348 10b8 PT + Caller provided credentials = No 2014-10-03 13:52:36:363 348 10b8 PT + Impersonate flags = 0 2014-10-03 13:52:36:363 348 10b8 PT + Possible authorization schemes used = 2014-10-03 13:52:36:363 348 10b8 PT WARNING: GetAuthorizationCookie failure, error = 0x80072EFE, soap client error = 5, soap error code = 0, HTTP status code = 200 2014-10-03 13:52:36:363 348 10b8 PT WARNING: Failed to initialize Simple Targeting Cookie: 0x80072efe 2014-10-03 13:52:36:363 348 10b8 PT WARNING: PopulateAuthCookies failed: 0x80072efe 2014-10-03 13:52:36:363 348 10b8 PT WARNING: RefreshCookie failed: 0x80072efe 2014-10-03 13:52:36:363 348 10b8 PT WARNING: RefreshPTState failed: 0x80072efe 2014-10-03 13:52:36:363 348 10b8 PT WARNING: Sync of Updates: 0x80072efe 2014-10-03 13:52:36:363 348 10b8 PT WARNING: SyncServerUpdatesInternal failed: 0x80072efe 2014-10-03 13:52:36:363 348 10b8 Agent * WARNING: Failed to synchronize, error = 0x80072EFE 2014-10-03 13:52:36:363 348 10b8 Agent * WARNING: Exit code = 0x80072EFE 2014-10-03 13:52:36:363 348 10b8 Agent ********* 2014-10-03 13:52:36:363 348 10b8 Agent ** END ** Agent: Finding updates [CallerId = CcmExec] 2014-10-03 13:52:36:363 348 10b8 Agent ************* 2014-10-03 13:52:36:363 348 10b8 Agent WARNING: WU client failed Searching for update with error 0x80072efe 2014-10-03 13:52:36:409 1608 7b8 COMAPI >>-- RESUMED -- COMAPI: Search [ClientId = CcmExec] 2014-10-03 13:52:36:409 1608 7b8 COMAPI - Updates found = 0 2014-10-03 13:52:36:409 1608 7b8 COMAPI - WARNING: Exit code = 0x00000000, Result code = 0x80072EFE 2014-10-03 13:52:36:409 1608 7b8 COMAPI --------- 2014-10-03 13:52:36:409 1608 7b8 COMAPI -- END -- COMAPI: Search [ClientId = CcmExec] 2014-10-03 13:52:36:409 1608 7b8 COMAPI ------------- 2014-10-03 13:52:36:425 1608 7b8 COMAPI WARNING: Operation failed due to earlier error, hr=80072EFE 2014-10-03 13:52:36:425 1608 7b8 COMAPI FATAL: Unable to complete asynchronous search. (hr=80072EFE) 2014-10-03 13:52:41:370 348 10b8 Report REPORT EVENT: {33AB639F-5F42-4913-9978-170F7389AAA2} 2014-10-03 13:52:36:363-0500 1 148 101 {00000000-0000-0000-0000-000000000000} 0 80072efe CcmExec Failure Software Synchronization Windows Update Client failed to detect with error 0x80072efe. 2014-10-03 13:52:41:370 348 10b8 Report CWERReporter::HandleEvents - WER report upload completed with status 0x8 2014-10-03 13:52:41:370 348 10b8 Report WER Report sent: 7.6.7600.320 0x80072efe 00000000-0000-0000-0000-000000000000 Scan 101 Managed 2014-10-03 13:52:41:370 348 10b8 Report CWERReporter finishing event handling. (00000000) 2014-10-03 13:54:21:624 2040 75c Misc =========== Logging initialized (build: 7.6.7600.320, tz: -0500) =========== 2014-10-03 13:54:21:624 2040 75c Misc = Process: C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\wusetup.exe 2014-10-03 13:54:21:624 2040 75c Setup Windows Update Client standalone setup : resource dll path is C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\en\wusetup.exe.mui 2014-10-03 13:54:21:624 2040 75c Setup Windows Update Agent Client Setup succeeded installing product root. 2014-10-03 13:54:21:624 2040 75c Setup Evaluating CBS package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-Core-TopLevel.cab" 2014-10-03 13:54:23:059 2040 75c Setup Package will be installed 2014-10-03 13:54:23:059 2040 75c Setup Evaluating CBS package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-ActiveX.cab" 2014-10-03 13:54:23:184 2040 75c Setup Package will be installed 2014-10-03 13:54:23:184 2040 75c Setup Evaluating CBS package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-Aux-TopLevel.cab" 2014-10-03 13:54:23:308 2040 75c Setup Package will be installed 2014-10-03 13:54:23:355 348 1198 AU ########### AU: Uninitializing Automatic Updates ########### 2014-10-03 13:54:23:355 348 1198 Report CWERReporter finishing event handling. (00000000) 2014-10-03 13:54:23:574 348 1198 Setup Service shutting down while setup is in progress. Attempting to unload core client binaries 2014-10-03 13:54:23:574 348 1198 Setup Attempting to close open Windows Update explorer windows 2014-10-03 13:54:24:666 348 1198 Setup Attempting to unload unused libraries from svchost 2014-10-03 13:54:28:581 348 1198 Setup Attempting to unload binaries from event log service 2014-10-03 13:54:28:659 348 1198 Service ********* 2014-10-03 13:54:28:659 348 1198 Service ** END ** Service: Service exit [Exit code = 0x240001] 2014-10-03 13:54:28:659 348 1198 Service ************* 2014-10-03 13:54:29:377 2040 75c Setup Uninstalling CBS package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-Aux-TopLevel.cab" 2014-10-03 13:54:41:388 2040 75c Setup Uninstall of setup package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-Aux-TopLevel.cab" succeeded and requires reboot 2014-10-03 13:54:41:388 2040 75c Setup Uninstalling CBS package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-ActiveX.cab" 2014-10-03 13:54:43:853 2040 75c Setup Uninstall of setup package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-ActiveX.cab" succeeded and requires reboot 2014-10-03 13:54:43:853 2040 75c Setup Uninstalling CBS package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-Core-TopLevel.cab" 2014-10-03 13:54:53:432 2040 75c Setup Uninstall of setup package "C:\Users\zbWinMan\Desktop\WSUS-fix\wua-win7sp1-x64\WUClient-SelfUpdate-Core-TopLevel.cab" succeeded and requires reboot 2014-10-03 13:54:53:447 348 1370 Misc =========== Logging initialized (build: 7.6.7600.320, tz: -0500) =========== 2014-10-03 13:54:53:447 348 1370 Misc = Process: C:\windows\system32\svchost.exe 2014-10-03 13:54:53:447 348 1370 Misc = Module: c:\windows\system32\wuaueng.dll 2014-10-03 13:54:53:447 348 1370 Service ************* 2014-10-03 13:54:53:447 348 1370 Service ** START ** Service: Service startup 2014-10-03 13:54:53:447 348 1370 Service ********* 2014-10-03 13:54:53:447 348 1370 Agent * WU client version 7.6.7600.320 2014-10-03 13:54:53:447 348 1370 Agent * Base directory: C:\windows\SoftwareDistribution 2014-10-03 13:54:53:447 348 1370 Agent * Access type: No proxy 2014-10-03 13:54:53:447 348 1370 Agent * Network state: Connected 2014-10-03 13:54:57:098 2040 75c Setup wusetup has finished. Exit code is bc2. Reboot is needed 2014-10-03 13:54:57:129 2040 75c Misc WARNING: SUS Client is rebooting system. 2014-10-03 13:55:00:932 348 1370 AU AU initiates service shutdown 2014-10-03 13:55:00:932 348 1370 Report CWERReporter::Init succeeded 2014-10-03 13:55:01:088 348 1370 Report *********** Report: Initializing static reporting data *********** 2014-10-03 13:55:01:088 348 1370 Report * OS Version = 6.1.7601.1.0.65792 2014-10-03 13:55:01:088 348 1370 Report * OS Product Type = 0x00000004 2014-10-03 13:55:01:104 348 1370 Report * Computer Brand = Dell Inc. 2014-10-03 13:55:01:104 348 1370 Report * Computer Model = OptiPlex 755 2014-10-03 13:55:01:104 348 1370 Report * Bios Revision = A19 2014-10-03 13:55:01:104 348 1370 Report * Bios Name = Phoenix ROM BIOS PLUS Version 1.10 A19 2014-10-03 13:55:01:104 348 1370 Report * Bios Release Date = 2011-05-31T00:00:00 2014-10-03 13:55:01:104 348 1370 Report * Locale ID = 1033 2014-10-03 13:55:01:104 348 1370 AU ########### AU: Uninitializing Automatic Updates ########### 2014-10-03 13:55:01:104 348 1370 Report CWERReporter finishing event handling. (00000000) 2014-10-03 13:55:01:151 348 1370 Service ********* 2014-10-03 13:55:01:151 348 1370 Service ** END ** Service: Service exit [Exit code = 0x240001] 2014-10-03 13:55:01:151 348 1370 Service ************* 2014-10-03 13:56:16:272 332 650 Misc =========== Logging initialized (build: 7.6.7600.256, tz: -0500) =========== 2014-10-03 13:56:16:287 332 650 Misc = Process: C:\windows\system32\svchost.exe 2014-10-03 13:56:16:287 332 650 Misc = Module: c:\windows\system32\wuaueng.dll 2014-10-03 13:56:16:272 332 650 Service ************* 2014-10-03 13:56:16:287 332 650 Service ** START ** Service: Service startup 2014-10-03 13:56:16:303 332 650 Service ********* 2014-10-03 13:56:16:568 332 650 Agent * WU client version 7.6.7600.256 2014-10-03 13:56:16:568 332 650 Agent * Base directory: C:\windows\SoftwareDistribution 2014-10-03 13:56:16:568 332 650 Agent * Access type: No proxy 2014-10-03 13:56:16:568 332 650 Agent * Network state: Connected 2014-10-03 13:57:02:318 332 650 Report CWERReporter::Init succeeded 2014-10-03 13:57:02:318 332 650 Agent *********** Agent: Initializing Windows Update Agent *********** 2014-10-03 13:57:02:318 332 650 Agent *********** Agent: Initializing global settings cache *********** 2014-10-03 13:57:02:318 332 650 Agent * WSUS server: https://MYsupServer:8531 2014-10-03 13:57:02:318 332 650 Agent * WSUS status server: https://MYsupServer:8531 2014-10-03 13:57:02:318 332 650 Agent * Target group: (Unassigned Computers) 2014-10-03 13:57:02:318 332 650 Agent * Windows Update access disabled: No 2014-10-03 13:57:02:365 332 650 DnldMgr Download manager restoring 0 downloads 2014-10-03 13:57:30:540 332 650 AU ########### AU: Initializing Automatic Updates ########### 2014-10-03 13:57:30:540 332 650 AU # WSUS server: https://MYsupServer:8531 2014-10-03 13:57:30:540 332 650 AU # Detection frequency: 22 2014-10-03 13:57:30:540 332 650 AU # Approval type: Scheduled (Policy) 2014-10-03 13:57:30:540 332 650 AU # Scheduled install day/time: Every day at 12:00 2014-10-03 13:57:30:540 332 650 AU # Auto-install minor updates: Yes (User preference) 2014-10-03 13:57:30:540 332 650 AU # Will interact with non-admins (Non-admins are elevated (User preference)) 2014-10-03 13:57:30:571 332 650 AU Setting AU scheduled install time to 2014-10-04 17:00:00 2014-10-03 13:57:34:830 332 650 Report *********** Report: Initializing static reporting data *********** 2014-10-03 13:57:34:830 332 650 Report * OS Version = 6.1.7601.1.0.65792 2014-10-03 13:57:34:830 332 650 Report * OS Product Type = 0x00000004 2014-10-03 13:57:35:096 332 650 Report * Computer Brand = Dell Inc. 2014-10-03 13:57:35:096 332 650 Report * Computer Model = OptiPlex 755 2014-10-03 13:57:35:158 332 650 Report * Bios Revision = A19 2014-10-03 13:57:35:158 332 650 Report * Bios Name = Phoenix ROM BIOS PLUS Version 1.10 A19 2014-10-03 13:57:35:158 332 650 Report * Bios Release Date = 2011-05-31T00:00:00 2014-10-03 13:57:35:158 332 650 Report * Locale ID = 1033 2014-10-03 13:57:36:188 332 650 AU Successfully wrote event for AU health state:0 2014-10-03 13:57:36:188 332 650 AU Initializing featured updates 2014-10-03 13:57:36:188 332 650 AU Found 0 cached featured updates 2014-10-03 13:57:36:188 332 650 AU Successfully wrote event for AU health state:0 2014-10-03 13:57:36:188 332 650 AU Successfully wrote event for AU health state:0 2014-10-03 13:57:36:188 332 650 AU AU finished delayed initialization 2014-10-03 13:57:46:952 332 ffc Report CWERReporter finishing event handling. (00000000) 2014-10-03 13:58:01:929 332 954 AU Triggering AU detection through DetectNow API 2014-10-03 13:58:01:929 332 954 AU Triggering Online detection (interactive) 2014-10-03 13:58:01:929 332 650 AU ############# 2014-10-03 13:58:01:929 332 650 AU ## START ## AU: Search for updates 2014-10-03 13:58:01:929 332 650 AU ######### 2014-10-03 13:58:02:553 332 650 AU <<## SUBMITTED ## AU: Search for updates [CallId = {6BEE3FC7-D063-4228-81D4-C483B9C27E70}] 2014-10-03 13:58:02:553 332 ffc Agent ************* 2014-10-03 13:58:02:553 332 ffc Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdates] 2014-10-03 13:58:02:553 332 ffc Agent ********* 2014-10-03 13:58:02:553 332 ffc Agent * Online = Yes; Ignore download priority = No 2014-10-03 13:58:02:553 332 ffc Agent * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1" 2014-10-03 13:58:02:553 332 ffc Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed 2014-10-03 13:58:02:553 332 ffc Agent * Search Scope = {Machine} 2014-10-03 13:58:02:553 332 ffc Setup Checking for agent SelfUpdate 2014-10-03 13:58:02:990 332 ffc Setup Client version: Core: 7.6.7600.256 Aux: 7.6.7600.256 2014-10-03 13:58:02:990 332 ffc Misc Validating signature for C:\windows\SoftwareDistribution\SelfUpdate\wuident.cab: 2014-10-03 13:58:03:239 332 ffc Misc Microsoft signed: Yes 2014-10-03 13:58:03:411 332 ffc Misc Validating signature for C:\windows\SoftwareDistribution\SelfUpdate\wuident.cab: 2014-10-03 13:58:03:411 332 ffc Misc Microsoft signed: Yes 2014-10-03 13:58:04:035 332 ffc Misc Validating signature for C:\windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab: 2014-10-03 13:58:04:113 332 ffc Misc Microsoft signed: Yes 2014-10-03 13:58:04:129 332 ffc Misc Validating signature for C:\windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab: 2014-10-03 13:58:04:144 332 ffc Misc Microsoft signed: Yes 2014-10-03 13:58:04:441 332 ffc Setup Determining whether a new setup handler needs to be downloaded 2014-10-03 13:58:04:597 332 ffc Setup SelfUpdate handler update required: Current version: 7.6.7600.320, required version: 7.6.7600.256 2014-10-03 13:58:04:597 332 ffc Setup Evaluating applicability of setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256" 2014-10-03 13:58:05:283 332 ffc Setup Setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed. 2014-10-03 13:58:05:283 332 ffc Setup Evaluating applicability of setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" 2014-10-03 13:58:05:580 332 ffc Setup Setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed. 2014-10-03 13:58:05:580 332 ffc Setup Evaluating applicability of setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" 2014-10-03 13:58:06:531 332 ffc Setup Setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed. 2014-10-03 13:58:06:531 332 ffc Setup SelfUpdate check completed. SelfUpdate is NOT required. 2014-10-03 13:59:01:992 332 ffc PT +++++++++++ PT: Synchronizing server updates +++++++++++ 2014-10-03 13:59:01:992 332 ffc PT + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = https://MYsupServer:8531/ClientWebService/client.asmx 2014-10-03 13:59:02:273 332 ffc PT WARNING: Cached cookie has expired or new PID is available 2014-10-03 13:59:02:273 332 ffc PT Initializing simple targeting cookie, clientId = 69b19ce5-7e10-43f6-a9bb-2a22b15bb822, target group = , DNS name = COMPUTERNAME 2014-10-03 13:59:02:273 332 ffc PT Server URL = https://MYsupServer:8531/SimpleAuthWebService/SimpleAuth.asmx 2014-10-03 13:59:58:282 332 ffc Agent WARNING: Failed to evaluate Installed rule, updateId = {189A8F50-0C3A-4FDF-8BC2-BC23A3EB11FB}.101, hr = 80242013 2014-10-03 14:00:33:446 332 ffc PT +++++++++++ PT: Synchronizing extended update info +++++++++++ 2014-10-03 14:00:33:446 332 ffc PT + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = https://MYsupServer:8531/ClientWebService/client.asmx 2014-10-03 14:00:35:959 332 ffc Agent * Found 0 updates and 80 categories in search; evaluated appl. rules of 2447 out of 3869 deployed entities 2014-10-03 14:00:35:990 332 ffc Agent ********* 2014-10-03 14:00:35:990 332 ffc Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdates] 2014-10-03 14:00:35:990 332 ffc Agent ************* 2014-10-03 14:00:36:037 332 11a0 AU >>## RESUMED ## AU: Search for updates [CallId = {6BEE3FC7-D063-4228-81D4-C483B9C27E70}] 2014-10-03 14:00:36:037 332 11a0 AU # 0 updates detected 2014-10-03 14:00:36:037 332 11a0 AU ######### 2014-10-03 14:00:36:037 332 11a0 AU ## END ## AU: Search for updates [CallId = {6BEE3FC7-D063-4228-81D4-C483B9C27E70}] 2014-10-03 14:00:36:037 332 11a0 AU ############# 2014-10-03 14:00:36:037 332 11a0 AU Successfully wrote event for AU health state:0 2014-10-03 14:00:36:037 332 11a0 AU Featured notifications is disabled. 2014-10-03 14:00:36:037 332 11a0 AU AU setting next detection timeout to 2014-10-04 14:44:29 2014-10-03 14:00:36:037 332 11a0 AU Setting AU scheduled install time to 2014-10-04 17:00:00 2014-10-03 14:00:36:037 332 11a0 AU Successfully wrote event for AU health state:0 2014-10-03 14:00:36:037 332 11a0 AU Successfully wrote event for AU health state:0 2014-10-03 14:00:41:013 332 ffc Report REPORT EVENT: {2E9B8D7D-2168-4097-9028-82BE712C8F37} 2014-10-03 14:00:35:990-0500 1 147 101 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdates Success Software Synchronization Windows Update Client successfully detected 0 updates. 2014-10-03 14:00:41:013 332 ffc Report REPORT EVENT: {44D7AC52-209C-4A42-80A9-1447AD313C1F} 2014-10-03 14:00:35:990-0500 1 156 101 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdates Success Pre-Deployment Check Reporting client status. 2014-10-03 14:00:41:013 332 ffc Report CWERReporter finishing event handling. (00000000)
  18. Hi, Just wondering if anyone has any idea about VPN client with SCCM 2012, I have added the vpn subnets as a boundry and added them to boundry groups in SCCM but the client still cannot install any software. ty
  19. Having issues installing software on machines through non admin accounts. The user can request it through the catalog but then it sits on downloading 0%. Have checked the logs and am getting these errors: Successfully sent location services HTTP failure message. DataTransferService 9/3/2014 10:00:29 AM 5196 (0x144C) Error sending DAV request. HTTP code 404, status 'Not Found' DataTransferService 9/3/2014 10:00:29 AM 5196 (0x144C) GetDirectoryList_HTTP failed with code 0x87d0027e. DataTransferService 9/3/2014 10:00:29 AM 5196 (0x144C) Non-recoverable error retrieving manifest (0x87d0027e). DataTransferService 9/3/2014 10:00:29 AM 5196 (0x144C) Have checked webdav and was missing the permissions from here: http://gabrielbeaver.me/2012/08/sccm-2012-part-i-pre-configuration/ Have added them in but am still having issues. Works under admin accounts but not under any other user. Any help would be appreciated.
  20. Without explaining details of my concern (the story will be too long), I need to know, in my installation batch file of a particular software, if the installation are initiate from "Application Catalog/Software Center" or from a computer deployment Task Sequences (PXE) Is there an easy way to know that like... IF <condition> GOTO Further Thanks in advance.
  21. Hi guys, I'm struggling to understand why when I deploy Server 2012 using either the 'install.wim' file or the original installation source, that the Unatted.xml file that I've created in WSIM doesnt get applied at all. Basically these are the steps I've taken, using the 'Create MDT Task Sequence': Created OS Image & OS Installer Created MDT Task Sequence + a MDT Settings package and MDT Toolkit package, both distributed to DP Created Unattend.xml file with WSIM, ensuring the Unattend.xml file is associated with the 'install.wim' file from the OS image. Created Configuration Manager Client Assigned 'MDT Toolkit' package to the 'Use Toolkit Package' step in the TS Assigned 'MDT Settings' package to the first 'Gather' step in the TS (all subsequent 'Gather' steps are set to 'Gather only local data' Ensured the tick box for 'Use an unattended or Sysprep answer file for a custom installation' is checked and the 'MDT Settings' package is selected along with 'Unattend.xml' as the 'Filename' Deployed TS to DP The VM that I'm using for testing boots to PXE no problems at all, however all the settings I applied to the Unattend file don't apply to the OS install. What am I missing? Any assistance is greatly appreciated. Thanks -Adz. P.S - Task Sequence & 'setupact.log' attached setupact.log
  22. I have a weird issue that I cannot track down. In our environment we keep getting complaints from helpdesk and users that their fonts change after they are remote controlled. Sometimes this happens after the helpdesk disconnects and other when they initially connect to the user via sccm remote control. Most clients are on dual dell 24 inch or single 19in monitors. Mostly with Nvidia nvs300 video cards, but this has also happened with new lenovo desktops using dual built in display ports via onboard ports. What happens after or during a remote control session is that the user states that the fonts look "thin" or distorted. Something that is visibly noticeable when someone is connected. Our environment is a citrix xenapp 6 farm for all applications so the desktop is essentially a terminal. We have seen this issue across several types of hardware and are still looking for the reason. The issue does not happen on every machine just sporadically. I used process explorer and see the memory usage on the nvidia video memory is a little high however I have not completely used and that varies from machine to machine. There is not notification to the IT person who is remote controlling the machine since they see the fonts normally. I think this has something to do with the scale to fit option that is turned on by default on sccm remote control, however I am not sure if that has something to do with this. Just wondering if anyone has seen this issue before
  23. Hello Windows Noob community! This community has helped me build our company's production deployment system - so I just want to say thanks for that first! Now I am hoping it come come through for me yet once again... So I have a beautifully working USMT backup task sequence that backs up a full user state to a network share which can then be used during the imaging process to restore the backup to a new PC. It works great! What I am wondering now.... is there a way to use that backup to restore a user state to an already existing imaged PC? Ex: We have a stockpile of 10-12 PCs imaged and ready to go... Joe Shmoe's PC is about to die so we run the USMT backup on it, grab his user state... Is there a way to apply that user state to one of the stored PCs without re-imaging it? I try to just double click the .mig file and use the windows easy transfer wizard but it fails 100% of the time... not sure if it's because of how the imaging process backs up the data? Is it possible to create a task sequence that just asks if you'd like to restore data? Thanks in advance for any assistance! AaronBISSELL
  24. Hi, does anyone have experience with provisioning of hp proliant servers? After starting the task sequence sccm doesn't find any volume or disk but the logical drive has been configured in the hp smart array utility. Diskpart tells that no fixed disk is available. Kind regards, Armin
  25. I am facing problem while deploying patches through SCCM 2012 . After the patch deployment , there are some server not downloading the patches .While check the deployment status i have seen that the following error found " Error code 0x80092026 The cryptographic operation failed due to local security option setting" Following error found in Wuahandler.log Failed to download updates to the WUAgent datastore. Error = 0x80092026. Someone please help to fix the issue .
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.