Outlook 2007 randomly installed on some computers - Infrastructure with SCCM 2012 and 2007 concurrently running

Hello,
I have an issue which is very odd. I have no packages with Office 2007 in CM2012 and in CM2007 I have an advertisement dated back to 2011 which was never expired. This morning I have some clients submitting tickets in relates to issues where Office 2007
randomly pops in on WinXP OS and Office 2010 pops in on Win7 computers even though we are using Office 2013(some didn't have any Office as they are critical computers). Almost all the clients are in CM2012 and management points pointing to CM12 however in
one of the logs we did notice it picking up some data from a distribution point that belongs to CM12 but can't seem to understand how a package that doesn't even exist in CM12 can be deployed randomly to these few computers.
Any help would be appriciated.

CExecutionRequestManager::OnServiceWindowEvent for START    execmgr    9/12/2014 10:00:01 PM    21788 (0x551C)
Auto Install is set to false. Do Nothing.    execmgr    9/12/2014 10:00:02 PM    21788 (0x551C)
CServiceWindowEventHandler::Execute - Received SERVICEWINDOWEVENT : END Event    execmgr    9/13/2014 12:00:00 AM    22452 (0x57B4)
CServiceWindowEventHandler::Execute - Received SERVICEWINDOWEVENT : START Event    execmgr    9/13/2014 12:00:00 AM    22452 (0x57B4)
CExecutionRequestManager::OnServiceWindowEvent for START    execmgr    9/13/2014 12:00:00 AM    22452 (0x57B4)
Auto Install is set to false. Do Nothing.    execmgr    9/13/2014 12:00:00 AM    22452 (0x57B4)
This occured during 9/13/2014 and those are the only entries for that time. It isn't possible from CM12 environment as CM12 doesn't have office 2007 packaged, and some devices with this issue don't even have CM12 client :S

Similar Messages

  • Installing an application through Powershell with SCCM 2012 r2 is not working as expected

    I am trying to install a VOIP client using a powershell script. When I run the powershell script on the client in a administrative powershell prompt the script runs fine and it installs the application as expected. When I try to do the same thing through
    the SCCM client using an application it does not install.
    I am not a Powershell Guru so the script below is my simple understanding of installations through powershell as of this moment
    <#
    Installatiescript CIC Client SU6 32 bit (kantoor)
    Versie 1.3
    17 april 2015 - Uitbreiding logfile. Fix opschonen startmenu
    16 april 2015 - Aanpassing verwijderen oude client, logfile aanmaken in TEMP
    13 maart 2015 - Eerste versie
    #>
    # Bepaal installatiebron
    $SourceDir = "\\VSC0501\SetupShare\APP_IC_Client_SU6\x86"
    # Bepaal logvariabelen
    $logfile = "$env:TEMP\cic_su6-install.txt"
    $Logdate = get-date -f yyyyMMdd-HHmm
    # Controleer of oude CIC client aanwezig is (versie 4.04.316) en deinstalleer deze indien nodig
    If (Test-Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{543BE3AC-426D-4FDD-8160-ECEEC2E211B6}")
    $val = (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{543BE3AC-426D-4FDD-8160-ECEEC2E211B6}").DisplayVersion
    if($val -eq "4.04.316") {
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {3F20671C-9CA2-41FA-B94A-C7C7FD95C7B4} /QN" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - Client has been succesfully removed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - Client cannot be succesfully removed" | out-file $logfile -Append
    exit
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {543BE3AC-426D-4FDD-8160-ECEEC2E211B6} /QN" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - Client has been succesfully removed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - Client cannot be succesfully removed - " $process.ExitCode | out-file $logfile -Append
    exit
    #(Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {3F20671C-9CA2-41FA-B94A-C7C7FD95C7B4} /QN" -Wait -Passthru).exitcode
    #(Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {543BE3AC-426D-4FDD-8160-ECEEC2E211B6} /QN" -Wait -Passthru).exitcode
    Get-ChildItem "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Abvakabo FNV\Interactive Intelligence" | Remove-Item -Recurse
    Remove-Item -Path "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Abvakabo FNV\Interactive Intelligence" -Recurse -Force
    else {
    Write-Output "$logdate - Client not present" | out-file $logfile -Append
    # Installeer CIC Client SU6
    $Arguments = "/i `"$SourceDir\ICUserApps_32bit.msi`" /l*vx `"$env:TEMP\cic_su6.log`" TRANSFORMS=`"$SourceDir\Kantoor.mst`" PATCH=`"$SourceDir\ICUserApps_32bit_SU6.msp`" ICSERVERNAME=cic.abvakabofnv.local /QN /norestart"
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "$Arguments" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - CIC Client SU6 (kantoor) has been succesfully installed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - CIC Client SU6 (kantoor) cannot be succesfully installed - " $process.ExitCode | out-file $logfile -Append
    exit
    # Installeer CIC Client SU6 NL Language Plugin
    $Arguments = "/i `"$SourceDir\LanguagePlugins\ICUserApps_LanguagePlugin_nl.msi`" /l*vx `"$env:TEMP\cic_su6_nl.log`" PATCH=`"$SourceDir\LanguagePlugins\ICUserApps_LanguagePlugin_nl_SU6.msp`" /QN /norestart"
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "$Arguments" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - CIC Client SU6 Languagepack NL has been succesfully installed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - CIC Client SU6 Languagepack NL cannot be succesfully installed - " $process.ExitCode | out-file $logfile -Append
    exit
    # Opschonen Desktop en Start menu
    Remove-Item -Path "$env:PUBLIC\Desktop\Interaction Fax.lnk"
    Remove-Item -Path "$env:PUBLIC\Desktop\Interaction Voicemail Player.lnk"
    Move-Item -Path "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Interactive Intelligence" "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Abvakabo FNV" -force
    The uninstall part works fine, but the installation (2 parts) do not. As I mentioned before... when I run the script manually it all works fine.
    The application is installed using a script. The commandline is
    powershell.exe -excecutionpolicy bypass -file Install_UserApps_SU6_Kantoor.ps1
    The application runs hidden in the context of the system wether or not the user is logged on. The maximum allowed run time is sufficient (30 minutes).
    There is no installation log from the msiexec command so the line were the application should be installed is not executed at all. There is also no mention in my own little log ($logfile = "$env:TEMP\cic_su6-install.txt") mentioning the result
    of the installation.
    The appenforce.log says...
    +++ Starting Install enforcement for App DT "Interaction Client - Standaard SU6" ApplicationDeliveryType - ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4, Revision - 7, ContentPath - C:\WINDOWS\ccmcache\13, Execution Context - System AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    A user is logged on to the system. AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Performing detection of app deployment type Interaction Client - Standaard SU6(ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4, revision 7) for system. AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    +++ Application not discovered. [AppDT Id: ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4, Revision: 7] AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    App enforcement environment:
    Context: Machine
    Command line: Powershell.exe -executionpolicy bypass -file Install_UserApps_SU6_Kantoor.ps1
    Allow user interaction: No
    UI mode: 0
    User token: null
    Session Id: 1
    Content path: C:\WINDOWS\ccmcache\13
    Working directory: AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Prepared working directory: C:\WINDOWS\ccmcache\13 AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Found executable file Powershell.exe with complete path C:\WINDOWS\System32\WindowsPowerShell\v1.0\Powershell.exe AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Prepared command line: "C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe" -executionpolicy bypass -file Install_UserApps_SU6_Kantoor.ps1 AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Executing Command line: "C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe" -executionpolicy bypass -file Install_UserApps_SU6_Kantoor.ps1 with user context AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Working directory C:\WINDOWS\ccmcache\13 AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Post install behavior is BasedOnExitCode AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Waiting for process 2916 to finish. Timeout = 30 minutes. AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Process 2916 terminated with exitcode: 0 AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    Looking for exit code 0 in exit codes table... AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    Matched exit code 0 to a Success entry in exit codes table. AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    Performing detection of app deployment type Interaction Client - Standaard SU6(ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4, revision 7) for system. AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    +++ Application not discovered. [AppDT Id: ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4, Revision: 7] AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    ++++++ App enforcement completed (3 seconds) for App DT "Interaction Client - Standaard SU6" [ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4], Revision: 7, User SID: ] ++++++ AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    I'm thinking of going back to a batchfile because that seems to do the job, but Powershell is much more powerfull.
    Anybody got any answers on what is going wrong are some suggestions for a better script? 

    You have a number of problems here.
    1.  As mentioned you have UNC paths ... which means there's no reason for a package at all.  f you want SCCM to use the package it just downloaded you should use $PSScriptRoot (PS equivelant of %~0dp).  If the client is using v2 or earlier
    ... fix that quick by starting your script with:
    If (!$PSScriptRoot) {
    $PSSCriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent
    Now you can call your install easy enough with a $PSScriptRoot+"\app.exe"
    2.  your discovery is failing after install.  This will always make SCCM report an installation failed even when the exit code is 0.  You can see it at the end of your log:
    Matched exit code 0 to a Success entry in exit codes table. AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    Performing detection of app deployment type Interaction Client - Standaard SU6(ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4, revision 7) for system. AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    +++ Application not discovered. [AppDT Id: ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4, Revision: 7] AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    So either your installation script is spitting out a exit code 0 regardless of the event OR your detection is wrong.
    EDIT:  you have exit statemetns after failed installs ... but no exit code (simply exit).  Change those to exit 1 so sccm knows it's a failed exit and not just a generic exit.  That's probably your problem (unc can't be reached as system, you're
    getting an exit  .... not defining exit 1).
    Something like this (warning this is a fast change so review it):
    <#
    Installatiescript CIC Client SU6 32 bit (kantoor)
    Versie 1.3
    17 april 2015 - Uitbreiding logfile. Fix opschonen startmenu
    16 april 2015 - Aanpassing verwijderen oude client, logfile aanmaken in TEMP
    13 maart 2015 - Eerste versie
    #>
    If (!$PSScriptRoot) {
    $PSSCriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent
    # Bepaal installatiebron
    #$SourceDir = "\\VSC0501\SetupShare\APP_IC_Client_SU6\x86"
    $SourceDir = $PSScriptRoot
    # Bepaal logvariabelen
    $logfile = "$env:TEMP\cic_su6-install.txt"
    $Logdate = get-date -f yyyyMMdd-HHmm
    # Controleer of oude CIC client aanwezig is (versie 4.04.316) en deinstalleer deze indien nodig
    If (Test-Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{543BE3AC-426D-4FDD-8160-ECEEC2E211B6}")
    $val = (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{543BE3AC-426D-4FDD-8160-ECEEC2E211B6}").DisplayVersion
    if($val -eq "4.04.316") {
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {3F20671C-9CA2-41FA-B94A-C7C7FD95C7B4} /QN" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - Client has been succesfully removed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - Client cannot be succesfully removed" | out-file $logfile -Append
    exit 1
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {543BE3AC-426D-4FDD-8160-ECEEC2E211B6} /QN" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - Client has been succesfully removed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - Client cannot be succesfully removed - " $process.ExitCode | out-file $logfile -Append
    exit 1
    #(Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {3F20671C-9CA2-41FA-B94A-C7C7FD95C7B4} /QN" -Wait -Passthru).exitcode
    #(Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {543BE3AC-426D-4FDD-8160-ECEEC2E211B6} /QN" -Wait -Passthru).exitcode
    Get-ChildItem "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Abvakabo FNV\Interactive Intelligence" | Remove-Item -Recurse
    Remove-Item -Path "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Abvakabo FNV\Interactive Intelligence" -Recurse -Force
    else {
    Write-Output "$logdate - Client not present" | out-file $logfile -Append
    # Installeer CIC Client SU6
    $Arguments = "/i `"$SourceDir\ICUserApps_32bit.msi`" /l*vx `"$env:TEMP\cic_su6.log`" TRANSFORMS=`"$SourceDir\Kantoor.mst`" PATCH=`"$SourceDir\ICUserApps_32bit_SU6.msp`" ICSERVERNAME=cic.abvakabofnv.local /QN /norestart"
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "$Arguments" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - CIC Client SU6 (kantoor) has been succesfully installed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - CIC Client SU6 (kantoor) cannot be succesfully installed - " $process.ExitCode | out-file $logfile -Append
    exit 1
    # Installeer CIC Client SU6 NL Language Plugin
    $Arguments = "/i `"$SourceDir\LanguagePlugins\ICUserApps_LanguagePlugin_nl.msi`" /l*vx `"$env:TEMP\cic_su6_nl.log`" PATCH=`"$SourceDir\LanguagePlugins\ICUserApps_LanguagePlugin_nl_SU6.msp`" /QN /norestart"
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "$Arguments" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - CIC Client SU6 Languagepack NL has been succesfully installed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - CIC Client SU6 Languagepack NL cannot be succesfully installed - " $process.ExitCode | out-file $logfile -Append
    exit 1
    # Opschonen Desktop en Start menu
    Remove-Item -Path "$env:PUBLIC\Desktop\Interaction Fax.lnk"
    Remove-Item -Path "$env:PUBLIC\Desktop\Interaction Voicemail Player.lnk"
    Move-Item -Path "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Interactive Intelligence" "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Abvakabo FNV" -force
    Exit 0

  • What best way to turn on all computers remotely using sccm 2012 sp 1

    what best way to turn on all computers remotely using sccm  2012
    and what the difference  between wake on lan and out of band service point role

    Hey!!! I am a 1E engineer and MVP... we started the power management movement with our very first software product, created around 12 or so years ago, called 1E WakeUp. The complete solution which manages power on (integrated with SCCM, or stand alone if
    you are not an SCCM shop) and power off (under a tightly controlled process) is called
    NightWatchman
    Here is a
    recent blog post I authored that was the last in a series documenting the entire wake-up process including how it integrates with SCCM or stood up standalone. It contains links to those earlier posts that explain our entire technology, so you will likely
    want to read all of them in order for a full understanding of our technology. It works incredibly well, is the most mature solution in the industry, and is extremely simple to install with minimal resources.
    If you have any questions, feel free to reach out to me privately
    Ed Aldrich | 1E | Pre-Sales Solutions Engineer | ConfigManager MVP 2003-2012

  • I have a Macbook Air (july 2012) with OS X 10.8.3  installed.  I have dvds with .vob files and have Quicktime Version 10.2 (603.12).  I can't play the DVDs.  Thereare some features of QT that I like, e.g. precise frame selection and save as .png file-help

    I have a Macbook Air (july 2012) with OS X 10.8.3  installed.  I have dvds with .vob files and have Quicktime Version 10.2 (603.12).  I can't play the DVDs.  There are some features of QT that I like, e.g. precise frame selection and save as .png file-help.  Am I missing some Apple software?  I thought QT for Mountain Lion could convert the .vob files - is there some setting that I have missed?
    Any suggestions that preserves a simple workflow much appreciated.

    arthur wrote:
    Perian is here: Perian - The swiss-army knife of QuickTime® components
    Perian will be retired soon.

  • I heard some promote use of "Terminal Services(RDS)", rather than App-V application with SCCM 2012 even if you have SCCM licens.

    Hi,
    I heard some promote use of "Terminal Services(RDS)", rather than App-V application with SCCM 2012 even if you have SCCM licens. The reason you dont need to repackage\test the application on an client OS...
    I don't agree and I have not Heard this Before, just that you use TS for some scenario.
    Or is it more likely that "Terminal Services(RDS)", take over the applikation administration?
    /SaiTech

    Surely this all depends on your environment. There's nothing wrong with creating RemoteApps to push to client devices. Maybe you have an environment where RDS is widely used. 
    Why not leverage both solutions and target App-V's at RDS servers and then create App-V based RemoteApps that users can run at home as part of a home working solution via RDWeb.
    Creating apps via RDS will be an admin overhead yes but then so is creating App-V packages in SCCM.
    I don't agree with the arguement re: 'you dont need to repackage\test the application on an client OS...' as
    App-V allows you to run on multple O/S types. 
    To be honest both technologies have their pros and cons. 
    Cheers
    Paul | sccmentor.wordpress.com

  • How to find using SQL query application deployed on win 7 machines with SCCM 2012 server or user installed manually.

    Hi,
    how to find using SCCM SQL query,  application deployed on win 7 machines with SCCM 2012 server or user/technician installed manually. Please let me know.

    Thanks, is it not possible via any script also?
    Like Torsten said, how can you tell the difference between CM12 installed applications and locally installed? Once you can answer that, then you can write report.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • How can I unlock the copy protection of songs that I've acquired some years ago with an old - and non existing anymore - account? Can I link the songs to my new account or do I have to purchase them again?

    How can I unlock the copy protection of songs that I've acquired some years ago with an old - and non existing anymore - account? Can I link the songs to my new account or do I have to purchase them again?

    If you're in the US, you will be able to use iTunes Match for $25 a year to remove copy protection in a few months: http://www.apple.com/icloud/features/
    If you're not, you can't.  You can authorise iTunes with the old account in addition to your current account, so all your songs will play, but I'm not sure what will happen if you try to sync them to an iPod.

  • I have adobe 7, I want to install it on a computer with Windows 8 and PPT 2013 will it work?

    I have adobe 7, I want to install it on a computer with Windows 8 and PPT 2013 will it work?

    you have acrobat 7?
    if so, it will work though you may need to use compatibility mode and use this version, http://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.htm l

  • Syncing Outlook 2007 Calendar running under Vista to IPOD Nano

    I have an Ipod Nano and am having an issue with syncing my Outlook 2007 calendar. I am running under Windows Vista. I do get the following error but cannot seem to find a way around it.
    "Itunes cannot sync calendar to the Ipod administrator. Try logging out of Windows and then back in"
    I have tried following directions on Apple support site, but nothing works.
    Any suggestions?

    For anything other than music, videos, and photos, I use a 3rd party program like iPodGadget (www.ipodsoft.com). iTunes just isn't reliable when it comes to calendars and contacts.

  • Excel not even open - "cannot complete this task with available resources" and then VBA run-time error randomly appear!

    Has anyone else seen the "Excel cannot complete this task with available resources" error message appear when Excel isn't even open? It keeps happening to me, and it's the strangest thing.
    It seems like interacting with Excel files sometimes prompts it - for example, I just turned on my computer this morning, checked my email, and then opened Google Chrome to upload some Excel files. Excel hasn't been opened at any point since the machine
    booted up, but this Excel error popped up while I was uploading the files.
    Checked the Task Manager because I was baffled (not that this is the first time it's happened), and there's no Excel application running, just that silly error message. Choose OK on that error and a VBA run-time error message appears (not even sure if it's
    Excel VBA or Word/Outlook but I assume it's Excel - it's the good old 1004, application-defined or object-defined error).
    Debug is greyed out, so it won't let me debug to see what the problem is. Choosing End brings the "Excel cannot complete this task with available resources" message back for one final performance.
    This happens on a not-infrequent basis: Excel isn't open, and I randomly get this set of Excel errors: 1) "cannot complete task", 2) VBA run-time, 3) "cannot complete task" again. Then it's done, until the next time it happens. Weird.
    I have 32-bit Windows 7 and Excel 2013/2010/2007/2003/2002 (I know!) but the issue only started after installing 2013. I also get the "cannot complete this task" message regularly when working in Excel (generally with Power Pivot or something legitimately
    memory-hungry though), and restarting the application does the trick. I don't mind a heads-up when I'm gobbling up too many resources, but when Excel's not even open, it's a bit ridiculous. It's like I have a zombie Excel! Does interacting with Excel files
    via upload/moving around Windows Explorer actually trigger some sort of Excel action in the background?
    Any ideas would be most appreciated!! Thank you :)

    Hi,
    As the memory error messages , it can be very generic and don't always identify the real cause of the issue. We may try to use the KB that Mr. KR mentioned above to troubleshoot it.
    On the other hand, if the file is xls format, we may convert to the new file format .XLSM and test.
    http://www.experts-exchange.com/Software/Office_Productivity/Office_Suites/MS_Office/Excel/Q_28339883.html
    Next, try to disable hardware graphics acceleration from File > Options > Advanced > Display section and disable Aero Themes (if you enabled) to check the results.
    For the hangs and crashes issues, we may use ADPlus.vbs to troubleshoot:
    http://support.microsoft.com/kb/286350/en-us
    http://www.networksteve.com/exchange/topic.php/Excel_cannot_complete_this_task_with_available_resources_error,/?TopicId=39411&Posts=1
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Hope it's helpful.
    George Zhao
    TechNet Community Support

  • SQL Server 2012 DB Engine does not start (clean install with server 2012 and 2008 R2)

    I'm trying to do clean installation of SQL server 2012 on Server 2012 (which is runnning as a VM on ESX server) and getting this "wait on the DB engine recovery failed" message. Initially, I though this issue was related to some permission issues
    but changing the permission or service accounts didn't help. I'm not seeing any "denied" messages in the log files either. Even with Server 2008 R2 (clean built VM), the installation gives the exactly the same error messages. 
    My setup is purely for test purpose; so, the security is not a concern. Can someone help or give me a clue where to look? 
    (Summary)
    Overall summary:
      Final result:                  Failed: see details below
      Exit code (Decimal):           -2061893606
      Start time:                    2014-05-28 17:12:12
      End time:                      2014-05-28 17:19:47
      Requested action:              Install
    Setup completed with required actions for features.
    Troubleshooting information for those features:
      Next step for SQLEngine:       Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
    Machine Properties:
      Machine name:                  WIN-1V3VKPV5Q19
      Machine processor count:       1
      OS version:                    Future Windows Version
      OS service pack:               
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                    Feature                
                     Language             Edition              Version         Clustered 
    Package properties:
      Description:                   Microsoft SQL Server 2012 Service Pack 1
      ProductName:                   SQL Server 2012
      Type:                          RTM
      Version:                       11
      Installation location:         E:\x64\setup\
      Installation edition:          Evaluation
      Slipstream:                    True
      SP Level                       1
      Patch Level:                   11.1.3128.0
    Product Update Status:
      Success: KB 2674319, KB 2793634
    Product Updates Selected for Installation:
      Title:                         Service Pack 1
      Knowledge Based Article:       KB 2674319
      Version:                       11.1.3000.0
      Architecture:                  x64
      Language:                      1033
      Title:                         SQL Server 2012 SP1 GDR Product Update
      Knowledge Based Article:       KB 2793634
      Version:                       11.1.3128.0
      Architecture:                  x64
      Language:                      All
      Update Source:                 MU
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      false
      AGTSVCACCOUNT:                 NT Service\SQLAgent$TESTDB
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Manual
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSERVERMODE:                  MULTIDIMENSIONAL
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 <empty>
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Automatic
      CLTCTLRNAME:                   <empty>
      CLTRESULTDIR:                  <empty>
      CLTSTARTUPTYPE:                0
      CLTSVCACCOUNT:                 <empty>
      CLTSVCPASSWORD:                <empty>
      CLTWORKINGDIR:                 <empty>
      COMMFABRICENCRYPTION:          0
      COMMFABRICNETWORKLEVEL:        0
      COMMFABRICPORT:                0
      CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140528_170909\ConfigurationFile.ini
      CTLRSTARTUPTYPE:               0
      CTLRSVCACCOUNT:                <empty>
      CTLRSVCPASSWORD:               <empty>
      CTLRUSERS:                     <empty>
      ENABLERANU:                    false
      ENU:                           true
      ERRORREPORTING:                false
      FEATURES:                      SQLENGINE
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  <empty>
      FTSVCPASSWORD:                 <empty>
      HELP:                          false
      IACCEPTSQLSERVERLICENSETERMS:  true
      INDICATEPROGRESS:              false
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    TESTDB
      INSTANCENAME:                  TESTDB
      ISSVCACCOUNT:                  NT AUTHORITY\Network Service
      ISSVCPASSWORD:                 <empty>
      ISSVCSTARTUPTYPE:              Automatic
      MATRIXCMBRICKCOMMPORT:         0
      MATRIXCMSERVERNAME:            <empty>
      MATRIXNAME:                    <empty>
      NPENABLED:                     0
      PID:                           *****
      QUIET:                         false
      QUIETSIMPLE:                   false
      ROLE:                          <empty>
      RSINSTALLMODE:                 DefaultNativeMode
      RSSHPINSTALLMODE:              DefaultSharePointMode
      RSSVCACCOUNT:                  <empty>
      RSSVCPASSWORD:                 <empty>
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  SQL
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 NT Service\MSSQL$TESTDB
      SQLSVCPASSWORD:                <empty>
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           WIN-1V3VKPV5Q19\Administrator
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  false
      TCPENABLED:                    1
      UIMODE:                        Normal
      UpdateEnabled:                 true
      UpdateSource:                  MU
      X86:                           false
      Configuration file:            C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140528_170909\ConfigurationFile.ini
    Detailed results:
      Feature:                       Database Engine Services
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred during the setup process of the feature.
      Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
      Component name:                SQL Server Database Engine Services Instance Features
      Component error code:          0x851A001A
      Error description:             Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.3128.0&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026
      Feature:                       SQL Browser
      Status:                        Passed
      Feature:                       SQL Writer
      Status:                        Passed
      Feature:                       SQL Client Connectivity
      Status:                        Passed
      Feature:                       SQL Client Connectivity SDK
      Status:                        Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140528_170909\SystemConfigurationCheck_Report.htm
    (Error Log)
    2014-05-28 17:17:26.64 spid8s      0 transactions rolled back in database 'msdb' (4:0). This is an informational message only. No user action is required.
    2014-05-28 17:17:26.73 spid9s      Starting up database 'model'.
    2014-05-28 17:17:28.24 spid9s      Error: 9004, Severity: 23, State: 6.
    2014-05-28 17:17:28.24 spid9s      An error occurred while processing the log for database 'model'.  If possible, restore from backup. If a backup is not available, it might be necessary to rebuild the log.
    2014-05-28 17:17:28.24 spid9s      SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.
    (Details)
    (01) 2014-05-28 17:17:28 Slp: Exception type: Microsoft.SqlServer.Configuration.SqlEngine.SqlEngineConfigException
    (01) 2014-05-28 17:17:28 Slp:     Message: 
    (01) 2014-05-28 17:17:28 Slp:         Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes.
    (01) 2014-05-28 17:17:28 Slp:     HResult : 0x851a001a
    (01) 2014-05-28 17:17:28 Slp:         FacilityCode : 1306 (51a)
    (01) 2014-05-28 17:17:28 Slp:         ErrorCode : 26 (001a)
    (01) 2014-05-28 17:17:28 Slp:     Data: 
    (01) 2014-05-28 17:17:28 Slp:       SQL.Setup.FailureCategory = ConfigurationFailure
    (01) 2014-05-28 17:17:28 Slp:       WatsonConfigActionData = INSTALL@CONFIGRC@SQL_ENGINE_CORE_INST
    (01) 2014-05-28 17:17:28 Slp:       WatsonExceptionFeatureIdsActionData = System.String[]
    (01) 2014-05-28 17:17:28 Slp:     Stack: 
    (01) 2014-05-28 17:17:28 Slp:         at Microsoft.SqlServer.Configuration.SqlEngine.SqlServerServiceBase.WaitSqlServerStart(Process processSql)
    (01) 2014-05-28 17:17:28 Slp:         at Microsoft.SqlServer.Configuration.SqlEngine.SqlServerServiceSCM.StartSqlServer(String[] parameters)
    (01) 2014-05-28 17:17:28 Slp:         at Microsoft.SqlServer.Configuration.SqlEngine.SqlEngineDBStartConfig.ConfigSQLServerSystemDatabases(EffectiveProperties properties, Boolean isConfiguringTemplateDBs, Boolean useInstallInputs)
    (01) 2014-05-28 17:17:28 Slp:         at Microsoft.SqlServer.Configuration.SqlEngine.SqlEngineDBStartConfig.DoCommonDBStartConfig(ConfigActionTiming timing)
    (01) 2014-05-28 17:17:28 Slp:         at Microsoft.SqlServer.Configuration.SqlConfigBase.SlpConfigAction.ExecuteAction(String actionId)
    (01) 2014-05-28 17:17:28 Slp:         at Microsoft.SqlServer.Configuration.SqlConfigBase.SlpConfigAction.Execute(String actionId, TextWriter errorStream)
    (01) 2014-05-28 17:17:28 Slp: Watson Bucket 1 
     Original Parameter Values 
    (01) 2014-05-28 17:17:28 Slp: Parameter 0 : SQL Server 2012@RTM@ 
    (01) 2014-05-28 17:17:28 Slp: Parameter 1 : Microsoft.SqlServer.Configuration.SqlEngine.SqlServerServiceBase.WaitSqlServerStart 
    (01) 2014-05-28 17:17:28 Slp: Parameter 2 : Microsoft.SqlServer.Configuration.SqlEngine.SqlServerServiceBase.WaitSqlServerStart 
    (01) 2014-05-28 17:17:28 Slp: Parameter 3 : Microsoft.SqlServer.Configuration.SqlEngine.SqlEngineConfigException@1306@26 
    (01) 2014-05-28 17:17:28 Slp: Parameter 4 : Microsoft.SqlServer.Configuration.SqlEngine.SqlEngineConfigException@1306@26 
    (01) 2014-05-28 17:17:28 Slp: Parameter 5 : SqlEngineDBStartConfigAction_install_configrc 
    (01) 2014-05-28 17:17:28 Slp: Parameter 6 : INSTALL@CONFIGRC@SQL_ENGINE_CORE_INST 
    (01) 2014-05-28 17:17:28 Slp: 
     Final Parameter Values 
    (01) 2014-05-28 17:17:28 Slp: Parameter 0 : SQL Server 2012@RTM@ 
    (01) 2014-05-28 17:17:28 Slp: Parameter 1 : 0xD15B4EB2 
    (01) 2014-05-28 17:17:28 Slp: Parameter 2 : 0xD15B4EB2 
    (01) 2014-05-28 17:17:28 Slp: Parameter 3 : 0x4BDAF9BA@1306@26 
    (01) 2014-05-28 17:17:28 Slp: Parameter 4 : 0x4BDAF9BA@1306@26 
    (01) 2014-05-28 17:17:28 Slp: Parameter 5 : SqlEngineDBStartConfigAction_install_configrc 
    (01) 2014-05-28 17:17:28 Slp: Parameter 6 : 0x9C5770A6 

    Hi Nababoya:
    As you are telling this is a test installation process...
    In the logs i m seeing the error message "An error occurred while processing the log for database 'model'.  If possible, restore from backup. If a backup is not available, it might be necessary to rebuild the log.".
    1) If the SQL Services was installed successfully and SQL Service was not able to start because of model database issue...
        1.1) If you have model database SQL back file, start the SQL Server in single user mode with minimum configuration and try to restore MODEL database
    http://blogs.msdn.com/b/sqlserverfaq/archive/2011/05/11/inf-hey-my-sql-server-service-is-not-starting-what-do-i-do.aspx
        1.2) If you don't have backups., try to rebuild the system databases but make sure that you are not losing any data critical data on master and SQL Jobs on MSDB
    http://msdn.microsoft.com/en-us/library/dd207003%28v=sql.110%29.aspx#RebuildProcedure
    2) As if this is a new installation try to repair the instance with the help of setup media file
    3) If the repair option fails., the last option wipe out the complete SQL Server components from Services.msc and Registries and start new installation.
    4) Make sure when you are doing un-installation all the required SQL Server components on services.msc should be in stop state.
    Hope this helps and let me know any questions...
    Thanks,
    Thanks, Satish Kumar. Please mark as this post as answered if my anser helps you to resolves your issue :)

  • Live meeting v806362.215 won't install with sccm 2012

    I'm trying to install Live Meeting 2007 client v806362.215 under SCCM 2012 application model using the .MSI.  "I get a message that says the installer was interrupted before Microsoft Office Live Meeting 2007 could be installed.  You need
    to restart the installer to try again." (see attached)
    researching the message indicates that there was an issue with the elevated permissions (system account) that the install was trying to use.
    Any help would be appreciated.

    appenforce.log
    +++ Starting Install enforcement for App DT "Microsoft Office Live Meeting 2007 - Windows Installer (*.msi file)" ApplicationDeliveryType - ScopeId_A835AB42-7EC7-4BDA-9149-4E1E591EDDE9/DeploymentType_01627331-bd97-4dc5-8605-9bfe3dafc7da, Revision - 20, ContentPath
    - C:\windows\ccmcache\77, Execution Context - System AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
        A user is logged on to the system. AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
        Performing detection of app deployment type Microsoft Office Live Meeting 2007 - Windows Installer (*.msi file)(ScopeId_A835AB42-7EC7-4BDA-9149-4E1E591EDDE9/DeploymentType_01627331-bd97-4dc5-8605-9bfe3dafc7da, revision 20) for system. AppEnforce 3/18/2014
    2:16:54 PM 6312 (0x18A8)
    +++ Application not discovered. [AppDT Id: ScopeId_A835AB42-7EC7-4BDA-9149-4E1E591EDDE9/DeploymentType_01627331-bd97-4dc5-8605-9bfe3dafc7da, Revision: 20] AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
        App enforcement environment:
     Context: Machine
     Command line: msiexec /i "lmconsole.msi" /l*v c:\users\public\install.log
     Allow user interaction: Yes
     UI mode: 1
     User token: null
     Session Id: 1
     Content path: C:\windows\ccmcache\77
     Working directory:  AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
        Prepared working directory: C:\windows\ccmcache\77 AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
    Found executable file msiexec with complete path C:\windows\system32\msiexec.exe AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
        Prepared command line: "C:\windows\system32\msiexec.exe" /i "lmconsole.msi" /l*v c:\users\public\install.log AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
    Valid MSI Package path = C:\windows\ccmcache\77\lmconsole.msi AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
        Advertising MSI package [C:\windows\ccmcache\77\lmconsole.msi] to the system. AppEnforce 3/18/2014 2:16:54 PM 6312 (0x18A8)
        Post install behavior is BasedOnExitCode AppEnforce 3/18/2014 2:16:55 PM 6312 (0x18A8)
        Waiting for process 6284 to finish.  Timeout = 120 minutes. AppEnforce 3/18/2014 2:16:55 PM 6312 (0x18A8)
        Process 6284 terminated with exitcode: 1603 AppEnforce 3/18/2014 2:16:59 PM 6312 (0x18A8)
        Looking for exit code 1603 in exit codes table... AppEnforce 3/18/2014 2:16:59 PM 6312 (0x18A8)
        Unmatched exit code (1603) is considered an execution failure. AppEnforce 3/18/2014 2:16:59 PM 6312 (0x18A8)
    ++++++ App enforcement completed (5 seconds) for App DT "Microsoft Office Live Meeting 2007 - Windows Installer (*.msi file)" [ScopeId_A835AB42-7EC7-4BDA-9149-4E1E591EDDE9/DeploymentType_01627331-bd97-4dc5-8605-9bfe3dafc7da], Revision: 20, User SID: ] ++++++ AppEnforce 3/18/2014
    2:16:59 PM 6312 (0x18A8)

  • SCEP with SCCM 2012 - definitions don't update some PCs in Collection

    Dear everybody,
    I'm managing SCCM 2012 to deploy System Center Endpoint Protection 2012 definitions
    Everything is normal until 22/11/2014 (Saturday)
    Then, Some PCs cannot be updated definition by SCCM.
    We have the collection named "Server" contains 57 servers, in which 22 Servers meet errors.
    I will show you updatedeployments.log from one of PC has met error
    Please help me to solve it
    P/S: I suspect something that I mark highlight
    Thanks
    <![LOG[Starting forced trigger (TriggerEnforce) for assignment {d21314f1-87e3-49a7-8cae-c8b266ea9101}]LOG]!><time="23:58:29.660-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3948" file="updatesassignment.cpp:1056">
    <![LOG[Detection job ({EEB410E8-3498-4067-AC06-0865D2F80EEB}) started for assignment ({d21314f1-87e3-49a7-8cae-c8b266ea9101})]LOG]!><time="23:58:29.676-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3948" file="updatesassignment.cpp:1196">
    <![LOG[Progress received for assignment ({d21314f1-87e3-49a7-8cae-c8b266ea9101})]LOG]!><time="23:58:53.419-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3084" file="updatesassignment.cpp:1988">
    <![LOG[DetectJob completion received for assignment ({d21314f1-87e3-49a7-8cae-c8b266ea9101})]LOG]!><time="23:58:53.700-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2640" file="updatesassignment.cpp:2113">
    <![LOG[Update (Site_014D9B0A-06EE-4184-B2A9-766732D2CC81/SUM_720a2f5d-0efd-470a-b4d2-1ce4d988aba7) Name (Definition Update for Microsoft Endpoint Protection - KB2461484 (Definition 1.189.378.0)) ArticleID (2461484) added to the targeted list of deployment ({d21314f1-87e3-49a7-8cae-c8b266ea9101})]LOG]!><time="23:58:53.715-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2640" file="updatesmanager.cpp:420">
    <![LOG[Update (Site_014D9B0A-06EE-4184-B2A9-766732D2CC81/SUM_73fa381e-06bd-446b-9301-7582b4b7c350) Name (Definition Update for Microsoft Endpoint Protection - KB2461484 (Definition 1.189.421.0)) ArticleID (2461484) added to the targeted list of deployment ({d21314f1-87e3-49a7-8cae-c8b266ea9101})]LOG]!><time="23:58:53.715-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2640" file="updatesmanager.cpp:420">
    <![LOG[Update (Site_014D9B0A-06EE-4184-B2A9-766732D2CC81/SUM_fb845948-4313-41e6-876f-09e278f1a4fb) Name (Definition Update for Microsoft Endpoint Protection - KB2461484 (Definition 1.189.445.0)) ArticleID (2461484) added to the targeted list of deployment ({d21314f1-87e3-49a7-8cae-c8b266ea9101})]LOG]!><time="23:58:53.731-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2640" file="updatesmanager.cpp:420">
    <![LOG[Raising client SDK event for class CCM_SoftwareUpdate, instance CCM_SoftwareUpdate.UpdateID="Site_014D9B0A-06EE-4184-B2A9-766732D2CC81/SUM_259f78dd-0967-4342-82c7-ca908081852b", actionType 12l, value NULL, user NULL, session 4294967295l, level 0l, verbosity 30l]LOG]!><time="23:58:53.731-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2640" file="event.cpp:405">
    <![LOG[Update (Site_014D9B0A-06EE-4184-B2A9-766732D2CC81/SUM_259f78dd-0967-4342-82c7-ca908081852b) Name (Definition Update for Microsoft Endpoint Protection - KB2461484 (Definition 1.189.465.0)) ArticleID (2461484) added to the targeted list of deployment ({d21314f1-87e3-49a7-8cae-c8b266ea9101})]LOG]!><time="23:58:53.747-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2640" file="updatesmanager.cpp:420">
    <![LOG[Update (Site_014D9B0A-06EE-4184-B2A9-766732D2CC81/SUM_f7b9ab32-7d7d-47d7-81e5-ed9b22ca5c33) Name (Definition Update for Microsoft Endpoint Protection - KB2461484 (Definition 1.189.487.0)) ArticleID (2461484) added to the targeted list of deployment ({d21314f1-87e3-49a7-8cae-c8b266ea9101})]LOG]!><time="23:58:53.747-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2640" file="updatesmanager.cpp:420">
    <![LOG[Update (Site_014D9B0A-06EE-4184-B2A9-766732D2CC81/SUM_232e7865-c75d-460c-adce-7dc4a0ee0ad1) Name (Definition Update for Microsoft Endpoint Protection - KB2461484 (Definition 1.189.512.0)) ArticleID (2461484) added to the targeted list of deployment ({d21314f1-87e3-49a7-8cae-c8b266ea9101})]LOG]!><time="23:58:53.778-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2640" file="updatesmanager.cpp:420">
    <![LOG[UpdateAssginment Download: CCM_CONTENT_WF_DEADLINE_DOWNLOAD set]LOG]!><time="23:58:54.012-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2640" file="updatesassignment.cpp:1334">
    <![LOG[DownloadCIContents Job ({8C06A92F-FEB4-4F6C-9730-402F79B9DB7C}) started for assignment ({d21314f1-87e3-49a7-8cae-c8b266ea9101})]LOG]!><time="23:58:54.012-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2640" file="updatesassignment.cpp:1380">
    <![LOG[Progress received for assignment ({d21314f1-87e3-49a7-8cae-c8b266ea9101})]LOG]!><time="23:58:54.885-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2564" file="updatesassignment.cpp:1988">
    <![LOG[Progress received for assignment ({d21314f1-87e3-49a7-8cae-c8b266ea9101})]LOG]!><time="23:58:55.057-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3920" file="updatesassignment.cpp:1988">
    <![LOG[Update (Site_014D9B0A-06EE-4184-B2A9-766732D2CC81/SUM_232e7865-c75d-460c-adce-7dc4a0ee0ad1) Progress: Status = ciStateDownloading, PercentComplete = 0, Result = 0x0]LOG]!><time="23:58:55.057-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3920" file="updatesassignment.cpp:2031">
    <![LOG[Progress received for assignment ({d21314f1-87e3-49a7-8cae-c8b266ea9101})]LOG]!><time="23:58:55.057-420" date="11-22-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2564" file="updatesassignment.cpp:1988">
    <![LOG[CUpdateAssignmentsManager received a SERVICEWINDOWEVENT END Event]LOG]!><time="00:00:00.031-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2564" file="assignmentsmanager.cpp:277">
    <![LOG[CUpdateAssignmentsManager received a SERVICEWINDOWEVENT START Event]LOG]!><time="00:00:00.031-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3084" file="assignmentsmanager.cpp:277">
    <![LOG[Suspend activity in presentation mode is selected]LOG]!><time="00:00:00.063-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3084" file="cliuisettings.h:163">
    <![LOG[At least one user has elected to suspend non-business hours activity when in presentation mode. Checking for presentation mode.]LOG]!><time="00:00:00.063-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3084" file="deploymentutils.cpp:711">
    <![LOG[Proceeding to non-business hours activites as presentation mode is off.]LOG]!><time="00:00:00.063-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3084" file="deploymentutils.cpp:722">
    <![LOG[Auto install during non-business hours is disabled or never set, selecting only scheduled updates.]LOG]!><time="00:00:00.063-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3084" file="assignmentsmanager.cpp:500">
    <![LOG[A user-defined service window(non-business hours) is available. We will attempt to install any scheduled updates.]LOG]!><time="00:00:00.063-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3084" file="updatesmanager.cpp:1558">
    <![LOG[Attempting to install 0 updates]LOG]!><time="00:00:00.063-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3084" file="updatesmanager.cpp:1581">
    <![LOG[No actionable updates for install task. No attempt required.]LOG]!><time="00:00:00.063-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3084" file="updatesmanager.cpp:2914">
    <![LOG[Updates could not be installed at this time. Waiting for the next maintenance window.]LOG]!><time="00:00:00.063-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3084" file="updatesmanager.cpp:1600">
    <![LOG[Message received: '<?xml version='1.0' ?>
    <CIAssignmentMessage MessageType='EnforcementDeadline'>
    <AssignmentID>{d21314f1-87e3-49a7-8cae-c8b266ea9101}</AssignmentID>
    </CIAssignmentMessage>']LOG]!><time="01:22:00.071-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="4008" file="cdeploymentagent.cpp:189">
    <![LOG[Deadline received for assignment ({d21314f1-87e3-49a7-8cae-c8b266ea9101})]LOG]!><time="01:22:00.087-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="4008" file="updatesassignment.cpp:923">
    <![LOG[Enforcement action already in progress]LOG]!><time="01:22:00.087-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="4008" file="updatesassignment.cpp:974">
    <![LOG[Message received: '<?xml version='1.0' ?>
    <CIAssignmentMessage MessageType='Activation'>
    <AssignmentID>{d21314f1-87e3-49a7-8cae-c8b266ea9101}</AssignmentID>
    </CIAssignmentMessage>']LOG]!><time="01:22:00.087-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="1624" file="cdeploymentagent.cpp:189">
    <![LOG[Assignment ({d21314f1-87e3-49a7-8cae-c8b266ea9101}) received activation trigger]LOG]!><time="01:22:00.102-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="1624" file="updatesassignment.cpp:729">
    <![LOG[Operation (TriggerEnforce) already in progress. No need to activate.]LOG]!><time="01:22:00.102-420" date="11-23-2014" component="UpdatesDeploymentAgent" context="" type="2" thread="1624" file="updatesassignment.cpp:735">
    <![LOG[CUpdateAssignmentsManager received a SERVICEWINDOWEVENT END Event]LOG]!><time="05:00:00.017-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2264" file="assignmentsmanager.cpp:277">
    <![LOG[No current service window available to run updates assignment with time required = 1]LOG]!><time="05:00:00.017-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2264" file="deploymentutils.cpp:580">
    <![LOG[Attempting to cancel any job started at non-business hours.]LOG]!><time="05:00:00.017-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2264" file="assignmentsmanager.cpp:527">
    <![LOG[Message received: '<?xml version='1.0' ?><SoftwareUpdatesMessage MessageType='EvaluateAssignments'><UseCachedResults>True</UseCachedResults></SoftwareUpdatesMessage>']LOG]!><time="19:33:47.078-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="1636" file="cdeploymentagent.cpp:189">
    <![LOG[Assignment({d21314f1-87e3-49a7-8cae-c8b266ea9101}) already in progress state (AssignmentStateDownloading). No need to evaluate]LOG]!><time="19:33:47.094-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="1636" file="updatesassignment.cpp:839">
    <![LOG[Evaluation initiated for (0) assignments.]LOG]!><time="19:33:47.094-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="1636" file="assignmentsmanager.cpp:1105">
    <![LOG[CUpdateAssignmentsManager received a SERVICEWINDOWEVENT START Event]LOG]!><time="22:00:00.309-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="1444" file="assignmentsmanager.cpp:277">
    <![LOG[Suspend activity in presentation mode is selected]LOG]!><time="22:00:00.340-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="1444" file="cliuisettings.h:163">
    <![LOG[At least one user has elected to suspend non-business hours activity when in presentation mode. Checking for presentation mode.]LOG]!><time="22:00:00.340-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="1444" file="deploymentutils.cpp:711">
    <![LOG[Proceeding to non-business hours activites as presentation mode is off.]LOG]!><time="22:00:00.340-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="1444" file="deploymentutils.cpp:722">
    <![LOG[Auto install during non-business hours is disabled or never set, selecting only scheduled updates.]LOG]!><time="22:00:00.356-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="1444" file="assignmentsmanager.cpp:500">
    <![LOG[A user-defined service window(non-business hours) is available. We will attempt to install any scheduled updates.]LOG]!><time="22:00:00.356-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="1444" file="updatesmanager.cpp:1558">
    <![LOG[Attempting to install 0 updates]LOG]!><time="22:00:00.356-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="1444" file="updatesmanager.cpp:1581">
    <![LOG[No actionable updates for install task. No attempt required.]LOG]!><time="22:00:00.356-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="1444" file="updatesmanager.cpp:2914">
    <![LOG[Updates could not be installed at this time. Waiting for the next maintenance window.]LOG]!><time="22:00:00.356-420" date="11-24-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="1444" file="updatesmanager.cpp:1600">
    <![LOG[CUpdateAssignmentsManager received a SERVICEWINDOWEVENT END Event]LOG]!><time="05:00:00.030-420" date="11-25-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3972" file="assignmentsmanager.cpp:277">
    <![LOG[No current service window available to run updates assignment with time required = 1]LOG]!><time="05:00:00.030-420" date="11-25-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3972" file="deploymentutils.cpp:580">
    <![LOG[Attempting to cancel any job started at non-business hours.]LOG]!><time="05:00:00.030-420" date="11-25-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3972" file="assignmentsmanager.cpp:527">
    <![LOG[User logon system task]LOG]!><time="12:58:14.004-420" date="11-25-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3080" file="systemtasks.cpp:90">
    <![LOG[Raising client SDK event for class NULL, instance NULL, actionType 11l, value NULL, user NULL, session 4294967295l, level 0l, verbosity 30l]LOG]!><time="12:58:14.004-420" date="11-25-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="3080" file="event.cpp:405">
    <![LOG[EnumerateUpdates for action (UpdateActionInstall) - Total actionable updates = 1]LOG]!><time="12:58:34.955-420" date="11-25-2014" component="UpdatesDeploymentAgent" context="" type="1" thread="2960" file="updatesmanager.cpp:945">

    From the log: "No current service window available to run updates assignment with time required = 1"
    The system doesn't have an available maintenance window to install the updates based on this message.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • SCCM 2012 and SCCM 2007 Shared Distribution Points

    I am building a new SCCM 2012 site (primary and 4 secondaries) besides a SCCM 2007 site (primary, 3 secondaries and 65 DPs).
    I migrated all objects from SCCM 2007 to SCCM 2012 which worked well.
    I migrated a client from SCCM 2007 to my SCCM 2012 environment and that worked well. Then i push some packages from SCCM 2012 to my migrated client which worked as well either.
    Then I switch on the SHARED DISTRIBUTION option in the migration section and now my migrated SCCM 2012 client only can access the SCCM 2007 DPs and packages from SCCM 2012 DP can't be accessed anymore...in Software Center the packages will stay at 0% downloading....
    Is that normal behavior after enabling shared DPs ?

    Did you ever find a solution for this? I am experiencing the same issue.
    I have an IP address range boundary for testing SCCM 2012. After enabling shared distribution option SCCM 2012 migrated boundaries from SCCM 2007. My test IP address range boundary has two boundary groups... One is the SCCM 2012 Boundary group
    pointing towards the SCCM 2012 DPs. The 2nd is the automatically created "Boundary Group for SCCM 2007 distribution point."
    With both of those in there I can only push SCCM 2007 packages to the SCCM 2012 clients. SCCM 2012 packages come back in the logs as "Calling back with empty distribution points list." If I remove the automatically created "Boundary Group for SCCM 2007 distribution
    point" from the test IP boundary then SCCM 2012 clients will properly download from the SCCM 2012 DPs, but now the SCCM 2007 packages fail to download to the SCCM 2012 test clients.
    I assume I have some kind of boundary issue but am at a loss of resolving it. Either that or I have the shared dp concept down incorrectly. Shouldn't I be able to have a boundary that has SCCM 2012 clients that uses the 2012 DP for 2012 content but the 2007
    DP for 2007 content while I am migrating?
    Thanks for any help
    - Ryan

  • Migration of a Windows 2008 Domain to 2012 with SCCM 2012 installed

    Hey there,
    i have been requested to migrate two 2008 Domains to 2012 with a possible merge.
    Done this many times, but in this case i have a SCCM 2012 installed in the Environment.
    SCCM is not covered by me, but i would like to have some aditional Background on this...
    Are there any Special Points to give Attention to?
    Any Hints or Ideas on this?
    Best regards
    Chris
    btw: i still found, that i am not "allowed" to migrate the sccm itself, but Need to reinstall it...

    i have been requested to migrate two 2008 Domains to 2012 with a possible merge.
    Done this many times, but in this case i have a SCCM 2012 installed in the Environment.
    btw: i still found, that i am not "allowed" to migrate the sccm itself, but Need to reinstall it...
    Lets say you have two domains - Domain 1 and Domain 2. Both have W2008 DCs. SCCM 2012 has been deployed to Domain 1.
    You could just upgrade to W2012 DCs in Domain 1, then migrate Domain 2 resources to Domain 1.In this way SCCM is unaffected.
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

Maybe you are looking for

  • What is the proper way to manage movies in iTunes?

    I've just been given a new video iPod, and am now considering importing movies into iTunes so that I can have them on my iPod. What I have is a bunch of MPGs (e.g., family movies from a camcorder, etc.); but I noticed that the iPod won't play them, p

  • Invoice Block was not removed though MRBR was ran.

    Hi  Every One We have created  a  Purchase Oreder   in SRM and G R( Goods receipt ) and IR (Invoice receipt ) happend in ECC. My problems is that  42 IRs happend for each one as one quantity in different time zones .The timings are as follows : On 16

  • Apex cannot open Jasper PDF

    Hi, my apex application has been working fine for a while by sending a parameter to apache tomcat server and call the jasper report saved there.Today whenever I click on the icon print I get a pdf error : " Adobe Reader could not open "invoice.pdf" b

  • BAPI OR FM REQUIRED

    Hi All, Is there any BAPI or FM available to change the make ready time and machine time for an operation in a production order ? Thanks and Regards, Navneeth K.

  • Future Versions of Linux Small Biz Suite?

    Novell's Small Business Development Team focuses on delivering real value for small- to medium-sized businesses. Their strategy is to take Novell's enterprise-level solutions (such as SLES and OES) and simplify, streamline, and improve the software s