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. hello, I wonder if anyone can help, im experiencing osd failure. Its not a new task sequence but I have recently upgraded to sccm 2012 r2 sp1 cu2. I have changed the boot image to the new windows 10 pe (x64) on the task sequence. I am deploying a windows 7 x64 image to a new desktop which I have downloaded the drivers for (hp z440) and injected the network and sata disk drivers into the boot image (it previously wouldn't even start windows pe until I did this). Now it pxe boots, I select the task sequence and it gets to a point just after completing the installation of the OS and then fails. errors attached (smsts.log) a few highlights from the log "ZTI deployment failed, Return Code = 4" "Failed to run the action: Error in the task sequence. The system cannot open the file. (Error: 00000004; Source: Windows)" can anyone please help with this? smsts.log
  2. Hi Guys, Happy New Year. Wanted to know if anyone knows best way to configure Dual Monitor settings during Win7 OSD deployment in SCCM 2012 R2 SP1 MDT integrated. I know you can edit the unattended.xml file ( can this be done for two monitors and setting one as main ?). Is there somewhere where the settings are applied in registry that i can export and import at the end of the TS before the final reboot. Basically we have a few Workstations that use dual monitors and the displays need to be configured a certain way, was hoping there was a way to configure this during TS rather than the engineer having to manually configure once complete. any help would be appreciated. Thank you
  3. Hello everyone. I have installed application catalog role in SCCM 2012. When I'm trying to check wheather it works or not, it gives me an error. here is the Screen shot. I tried to find the solution but still the same. I have already installed WCF Service and ASP.Net 4.0
  4. Hello, We are running SCCM 2012 SP1 ,I'm trying to import new drivers and the import process is stuck on "validating file permissions and getting driver attributes". Any idea what might be causing that ?
  5. Hi guys, before i show you my problem this is my environment work: Version SCCM 2012: RTM 5.00.7711.0000 Build Number: 7711 Site: Primary This is my problem: I tried to do everything .... I do not really know what to do ... Help me THANKS
  6. I am familiar with Powershell but find the CM2012 cmdlets to be quite lacking. Being as my WMI querying skills are not that strong, I am looking for help in writing a Powershell WMI query (or script, if necessary) to get a list of content on a distribution point group. I can see it in the GUI, so I know it's there. I just can't figure out how to get it into a manageable list text format. I would like it to contain the following fields: Name,Type,Size (MB),Package ID. Any help would be greatly appreciated.
  7. 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
  8. 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.
  9. 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?
  10. 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?
  11. 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.
  12. Hi guys, I've got an issue that I'd like to run by you if I may? I deployed a CAS to a Windows 2008 R2 server and used the default instance on a SQL 2008 R2 SP2 server. This worked just fine with SPNs registered for both FQDN and NETBIOS. The issue arises when I try to use a named SQL instance on the same server as the default instance to deploy a Primary server to. The installer reports that it is unable to hit this server and given that the default instance is using Port 1433, I can see why. How do I prep this instance for SCCM and install the primary to it? Thanks, Ian.
  13. I have to apologize for the length of the post right up front. I am having an issue with PXE boot while using SCCM 2012 R2. The issue is only with 64-Bit machines using UEFI. All others are working correctly. This is running in a test lab so it's a pretty simple setup at this time. I have two boot images (x86 and x64), both are distributed to the DP's and Unknown Computer support is enabled. I have two Task Sequences that I am testing. One is a Windows 7 x86 sequence - using the x86 Boot Image.The other is a Windows 8.1 sequence - using the x64 Boot Image. No applications or anything special in the task sequence, just standard OS installation. I was initially deploying both the x86 and x64 task sequences to the "All Unknown Computers" group. However, this caused issues as SCCM was selecting the initial PXE boot image based upon the last deployment. Therefore it would not always boot the correct architecture. I know I can boot the x86 image and deploy a 64 Bit OS. However, UEFI breaks all of this. When you attempt to PXE boot in UEFI mode, the architecture of the boot image must match the architecture of the machine. I have a mixture of x86 (Latitude 10 tablets) as well as newer x64 UEFI machines. There are also both x86 and x64 non UEFI capable machines. So I need to be able to support Non-UEFI as well as UEFI PXE booting for both the x86 and x64 architectures. To get around the issue with publishing multiple task sequences to Unknown computers, I have created two Collections to try to separate the x86 Unknown Computers and x64 computers. The collections each contain 1 member, the "x64 Unknown Computer" and "x86 Unknown Computer", respectively. I then modified the Windows 7 x86 task sequence to deploy to the "Unknown x86 Computers" collection. I also modified the Windows 8.1 task sequence to use the "Unknown x64 Computers" collection. I can now successfully boot an x86 NON-UEFI machine, an x64 NON-UEFI machine, as well as a UEFI x86 machine. They all pick up the correct boot image and run the task sequence just fine. The issue I am having is specifically with the UEFI 64-Bit machines. They PXE boot just fine, however when they do, they boot from the x86 Boot Image. Of course this doesn't work because of the UEFI mode. I get the following error: I have attached the SMSPXE.log file in case this helps. Now, here is the interesting part..... If I import the UEFI 64 Bit test machine via either the MAC address or GUID and add this to a collection and then deploy the Windows 8.1 Task Sequence to this collection, the machine boots the correct x64 Boot Image and runs the task sequence just fine. Anyone have any ideas how I can specifically target UEFI 64-Bit machines through a collection? -Chris SMSPXE.log
  14. 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.
  15. Hi guys, I wondered if someone here can provide clarity regarding update sources for the SCEP client as I've hit a brick wall this side of the wire! We have implemented the EPP role, configured AMW policies and deployed, setup ADR and tested and up until recently had no issues with SCEP or AMW update functionality. The SCEP clients are now failing to update their definitions. The updates sources, and order, are: 1. SCCM 2. Microsoft Update Clients fail to update and provide the following error: CODE: 0x8024402c MESSAGE: System Center Endpoint Protection couldn't install the definition updates because the proxy server or target server names can't be resolved. Having removed Microsoft Update from the Update Sources (as I believe there's no route to it), clients update their policies and now receive their updated definitions. When I examine the MPxxxxxx.log in ProgramData\Microsoft\Microsoft Antimalware\Support, it shows that the definitions were updated via MMPC. This causes a quandary because it isn't in the sources list. I think my question is relatively straight forward... Are the definitions being updated from SCCM but incorrectly reported as MMPC or is there a default position within SCEP 2012 whereby it checks the MMPC regardless of what the configuration is set at? Thanks, Ian.
  16. 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">
  17. 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 .
  18. 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...
  19. 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>
  20. 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.
  21. 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
  22. Hello Everyone, This website has been super helpful in my migration from SCCM 2007 to SCCM 2012. One of the questions that I can't seem to find any answers for is related to SCCM 2012 Collections design consideration. Currently in SCCM 2007 we have a "Software Distribution" Collection, and within each application has its own collection. All computers are added using Direct rule only (yes not the best way), to each application specific collection as needed. Now, with SCCM 2012, I would like to revamp the way we push out applications, on top of that since sub-collections are not possible with SCCM 2012, having 100 collections for software is going to look like a mess. I would like to get advice on how you guys are pushing out packages using SCCM 2012. I am guessing a lot of you are using AD Groups for applications and maybe using a query to determine if the app is already installed? The whole application vs packages still has me confused. A visual screenshots of a setup would help a lot. Thanks again.
  23. 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)
  24. 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
  25. Has anyone seen this before? This is preventing me from downloading updates during an ADR, and also preventing software groups from being made.
×
×
  • 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.