Windows Server Backup scheduled task run successfully but backup do not start (not running) on Windows Server 2012

Hi,
A backup job has been setup on Windows Server 2012 (Platform: Win32NT; ServicePack: ; Version: 6.2.9200.0; VersionString : Microsoft Windows NT 6.2.9200.0) via Windows Backup Software UI (Local Backup 1.0).
It is appearing as a scheduled task "\Microsoft\Windows\Backup\Microsoft-Windows-WindowsBackup" belonging to user 'nt authority\system' in task scheduler.
The problem is that the Backup job never start despite the scheduled task running and completing successfully (when run automatically or manually)!
Would you be able to explain why and assist in resolving that issue?
Here is what we know:
When the backup is run manually via the Windows Backup Software UI, it works fine.
When the backup is run via command line (as set in schedule task) in a cmd command prompt (as local/domain 'administrator' or as 'nt authority\system' which is possible by running command prompt via 'PsExec.exe -i -s cmd'), something like "%windir%\System32\wbadmin.exe
start backup -templateId:{f11eb3aa-74e7-4ff4-a57b-d8d567ee3f77} -quiet", it works fine.
If you manually run the preset scheduled task while logged in as administrator, the task run and complete successfully but the backup job does not start.
Idem if you schedule task is run automatically at scheduled time.
The schedule task run and complete successfully but the backup job does not start.
It is confirmed by running the following in a command prompt as 'nt authority\system':
schtasks /run /tn "\Microsoft\Windows\Backup\Microsoft-Windows-WindowsBackup"
SUCCESS: Attempted to run the scheduled task "\Microsoft\Windows\Backup\Microsoft-Windows-WindowsBackup".
Despite success result, the Backup job does not start running...
No errors or warning appears anywhere in Event Logs (Microsoft > Windows > Backup or Task Scheduler) nor in the scheduled task History tab. The schedule task complete successfully but no Backup job is run...
If scheduled task automatically set by Windows Backup software is duplicated (copied) and set manually it runs fine as 'administrator' and as 'nt authority\system' (subject that 'nt authority\system' is added to the 'Backup Operators' AD group).
Here is an export of the current pre-set schedule task, is there any settings that need to be changed to make it works?
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.4" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
  <RegistrationInfo>
    <Author>MYDOMAIN\SERVER1</Author>
    <SecurityDescriptor>D:AR(A;OICI;GA;;;BA)(A;OICI;GR;;;BO)</SecurityDescriptor>
  </RegistrationInfo>
  <Triggers>
    <CalendarTrigger id="Trigger 1">
      <StartBoundary>2014-07-14T21:00:00</StartBoundary>
      <Enabled>true</Enabled>
      <ScheduleByDay>
        <DaysInterval>1</DaysInterval>
      </ScheduleByDay>
    </CalendarTrigger>
  </Triggers>
  <Principals>
    <Principal id="Author">
      <UserId>S-1-5-18</UserId>
      <RunLevel>HighestAvailable</RunLevel>
    </Principal>
  </Principals>
  <Settings>
    <MultipleInstancesPolicy>Parallel</MultipleInstancesPolicy>
    <DisallowStartIfOnBatteries>true</DisallowStartIfOnBatteries>
    <StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
    <AllowHardTerminate>true</AllowHardTerminate>
    <StartWhenAvailable>true</StartWhenAvailable>
    <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
    <IdleSettings>
      <StopOnIdleEnd>false</StopOnIdleEnd>
      <RestartOnIdle>false</RestartOnIdle>
    </IdleSettings>
    <AllowStartOnDemand>true</AllowStartOnDemand>
    <Enabled>true</Enabled>
    <Hidden>false</Hidden>
    <RunOnlyIfIdle>false</RunOnlyIfIdle>
    <DisallowStartOnRemoteAppSession>false</DisallowStartOnRemoteAppSession>
    <UseUnifiedSchedulingEngine>false</UseUnifiedSchedulingEngine>
    <WakeToRun>false</WakeToRun>
    <ExecutionTimeLimit>P3D</ExecutionTimeLimit>
    <Priority>7</Priority>
  </Settings>
  <Actions Context="Author">
    <Exec>
      <Command>%windir%\System32\wbadmin.exe</Command>
      <Arguments>start backup -templateId:{f11eb3aa-74e7-4ff4-a57b-d8d567ee3f77} -quiet</Arguments>
    </Exec>
  </Actions>
</Task>
Thank you in advance for your feedback.

Once again, the issue is not to run the backup manually from the command line but to have it run via the scheduled task setup by the Windows Backup software.
By default, the schedule task is to be run as NT Authority\System, and when run under this account, the backup does not start (even though account is member of Backup Operators) and job can manually be run via elevated command prompt. This is not a normal
behavior and constitute a major bug in Windows Server 2012.
From my understanding the NT Authority\System account is a built-in account from Windows that should by default be part of the Administrators group (built-in) even though it does not explicitly appears like it in AD by default.
This account shall have by default Administrators rights and Backup Operators rights (via the Administrators group) without being explicitly added to those groups (http://msdn.microsoft.com/en-gb/library/windows/desktop/ms684190%28v=vs.85%29.aspx). By design
it is supposed to be the most powerful account which has unrestricted access to all local system resources. If that is not the case (as it seems) then this would constitute a major bug in Windows Server 2012 edition.
As said previously and as you confirmed, currently by default NT Authority\System on Windows 2012 server cannot start backup manually via an elevated command prompt unless it is manually added to Backup Operators (or Administrators) group. But wouldn't that
constitute a bug of Windows Server 2012?
Our server has not yet been restarted since I added NT Authority\System account to the Administrators group explicitly manually so I cannot yet confirmed it would sort the issue. Indeed it is heavily in use so cannot easily be restarted. Will confirm when
done.
We also have an additional problem where after a while of last reboot, part of the Exchange ECP can no longer be properly loaded in the web browser due to compilation error (compilation is done via NT Authority\System account which seems to no longer have
sufficient right to compile .NET code). What is strange is that it works at first and then stop working at some point... I am hopeful that adding NT Authority\System to the Administrators group would sort this issue as well but once again, that shall not be
needed!!!
Could a Windows Server 2012 update introduced some security policy changes or else that prevent NT Authority\System to have full power?

Similar Messages

  • Windows 2008 Server SFTP Scheduled Tasks fails to execute sftp commands

    I have a scheduled task that pulls in Human Resources data using sftp public / private key combination.  It was associated with user who has recently left the company and their account has been disabled. Everything I've read
    so far leads me to believe that I need to establish the sftp connection and create a registry entry for another user...   I don't want this application to be dependent on any particular user.   I've stored the key set on a share that is
    open to any system administrator on the server and created a batch job similar to:
    Del oldFile.txt
    "psftp.exe <user>@<server> -i <PrivateKeyLocation> -b <FtpComands>". 
    The old file gets deleted fine via scheduled task or manual, but the new file only gets pulled when running it directly from my account. 
    Any suggestions would be greatly appreciated.

    The list of ftp commands that you are passing in to psftp.exe may need user specific resources (for example, a mapped drive). But it's difficult to say though without looking at what the psftp commands do. If the available commands for psftp.exe
    are not flexible enough, you might want to look at other solutions like Sysax FTP Automation.

  • My Firefox version is 13.0.1, I use Windows Seven 64-bit, when I click on Firefox, but the program does not run! But Firefox is seen in the list of Windows proc

    My Firefox version is 13.0.1, I use Windows Seven 64-bit, when I click on Firefox, but the program does not run! But Firefox is seen in the list of Windows processes, while Firefox does not run.
    I manually deleted Firefox from the list once I have Windows processing.
    And when I clicked on Firefox, Firefox will open quickly and easily.
    Firefox process in Windows Processes names list called "firefox.exe * 32" is.
    Please try to solve my problem, my problem is how to solve?

    Hi, are you saying that you start Firefox and it stalls -- you can see it in the Task Manager but it never displays -- but if you kill that process and start Firefox again it starts up properly that second time?
    If you look at the statistics available in the Task Manager's processes tab such as bytes read or other bytes, can you see whether Firefox is doing anything at all? ''Note: You might need to add columns if your Processes tab isn't set up to display statistics. You can do that from the View menu.''
    You might already have seen these troubleshooting articles. If not, does anything here help:
    * [[Firefox won't start - find solutions]]
    * [[Firefox hangs or is not responding - How to fix]]

  • Close Firefox, restart it says firefox can not start - already running, tried deleting the parent.lock it doesn't exist. I try to turn off my computer it says WidgiBho needs to close, I tell it to close but computer never shuts down

    close Firefox, restart it says firefox can not start - already running, tried deleting the parent.lock it doesn't exist. I try to turn off my computer it says WidgiBho needs to close, I tell it to close but computer never shuts down

    Did you try to wait a bit longer before restarting Firefox to give Firefox more time to close down completely?
    See "Hang at exit":
    *http://kb.mozillazine.org/Firefox_hangs
    *https://support.mozilla.com/kb/Firefox+hangs

  • HT1751 i bought a new, larger external hard drive. copied my itunes library from the old drive to the new one, changed the libarary location in Edit/Preferences/Advanced to the new drive. iTunes will not start or run unless old hard drive plugged in.??

    I bought a new, larger external hard drive. I have my iTunes library on the external drive instead of C: drive, Using Windows 7.
    I copied my itunes library from the old drive to the new one, changed the libarary location in Edit/Preferences/Advanced to the new drive.
    iTunes will not start or run unless the old hard drive is plugged in.
    If I disconnect the old drive iTunes shuts down.
    Any ideas. ??

    Hello kskip,
    Thank you for providing so much information about what is going on.  It sounds like you have setup iTunes to save new content to your new external hard drive in iTunes>Preferences, but it sounds like iTunes is not opening iTunes Library.itl file on the new external drive.  You have one last step to take to have iTunes point to your new external hard drive rather than your old one:
    Steps to create or choose a different iTunes Library file
    If iTunes is running, quit iTunes.
    If you are using Windows, hold down the Shift key and from the Start menu and choose All Programs > iTunes > iTunes.
    You should see the following screen:
    Additional information
    If you do not see the screen above, then you did not hold the correct key at the correct time. You may want to try again. Note that if you pinned iTunes to the Start menu programs, and open it that way, it may not work.
    Once you select "Choose Library," you will need to navigate to the iTunes Library.itl file on your new external drive. 
    You can find the full article here:
    iTunes: How to open an alternate iTunes Library file or create a new one
    http://support.apple.com/kb/ht1589
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • HT1926 download does not start i am using windows 7 and checked the pop-up blocker

    download does not start i am using windows 7 and checked the pop-up blocker

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer some files from an existing profile to the new profile, but be careful not to copy corrupted files.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    A possible cause is security software (firewall,anti-virus) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls

  • Could not start the Crystal Report Application Server service on local computer

    Post Author: [email protected]
    CA Forum: Deployment
    Hi
    I have a following problem.
    I have installed Crystal report application server(RAS)(CE embeded 10) on Windows server 2003 enterprise x64 edition.
    When i start it, i see an error:
    Could not start the Crystal Report Application Server service on local computerError 1067: the process terminated unexpectedly
    Sometimes, i can start it but it stops a few minutes later.
    I have disabled DEP (data execution prevention).
    Log:
    Faulting application crystalras.exe, version 10.0.0.533, faulting module unknown, version 0.0.0.0, fault address 0x00000000.
    Please help
    Thanks for your help

    This error occurs after an initial install, when the Oracle suite is installed logged in as the user(who has admin rights on the machine). If this is the case,
    1.Go to Services (Admin Tools > Services)
    2.Double click the Oracle services( BI Server or Presentation or TNS Listener).
    3.Go to Log On tab
    4.If local system account is checked , un-check that option. Check "This Account" option
    5.Give the user information for that machine(e.g domain\username)
    6.Specify password associated with the user ( the username/pwd that is used to login to the machine)
    7.Confirm pwd and click Apply.
    8.re-start the service.
    This is what i did , and it worked.
    good luck and hopefully oracle addresses these issues , they become frustrating to use the product.
    Thanks,
    Ram

  • Laptop L655-S5157 Does Not Start Up & Run.......

     My Laptop L655-S5157 Does Not Start Up & Run  Longer Than 1-3 Mins Upon Selecting The Start Button.
    After It Starts & Looks Like It's Going To Run Normal, It Just Turns Right OFF.
    I Can't Send Any Attachments Because The Only Way I Can Communicate Is Running The LT In The "SAFE MODE".
    I've Taken Pics Of It Running & Trying To Repair Itself On My iPhone. 
    I've Also Ran "Startup Repair" Program, But All It Says In The End, Is It Can't "Repair This Computer Automatically".
    It Then Says To Send The Problem Details To "Microsoft Solutions", I Comply & Send The Information To Them.
    I Know Enough About Laptops/Computers To Be DANGEROUS...
    I Really Dont Understand What To Do In The "Safe Mode", Except That It's Safe & Runs Only The Essentials.

    It Started NOT  Running In The Normal mode The Day That Chuck Noll Passed Legendary Football Coach Ot The Pittsburg Steelers On 14 Jun 2014.
    The Link I Clicked On Was From Twitter
    Ever Since Then, The Only Way I Can Communicate With The World Through My Computer Is In The Safe Mode.

  • Hi, Accidentally somebody screw up Photoshop CS4 and InDesign CS4 Master edition on a MAC computer in the school. The install discs did not start to run therefore I can't  reinstall the 2 missing programs. I want to install the softwares, therefore I down

    Hi, Accidentally somebody screw up Photoshop CS4 and InDesign CS4 Master edition on a MAC computer in the school. The install discs did not start to run therefore I can't  reinstall the 2 missing programs. I want to install the softwares, therefore I download those from here.  The downloaded program refuse to accept the serial number which was given to the school when they purchased the Master Collection CS4 MLP A00. Thank you for your help, in advance.

    Hi Jeff,
    Thank you. I am a little bit busy at work, sorry for the delayed reply. I tried to solve the problem, but it still exists. The 3rd of the Adobe disk is damaged someway. I tried to run on my mac at home and it has a failure. So I think we have no other choice that to download the full pack of master collection. I had a discussion with the IT expert and he figured out that company does not exist any more from where they purchased the Adobe Master Collection for Mac and PC. So If you would be kind to help me, what kind of information ID or any kind of document would be needed to identify the purchaser institute (us). I don't think any of us has an account at the Adobe. I will try to figur out. I desperately need to replace Photoshop and InDesign as without them it's really harsh to teach the kids fot the graphic design.
    Sincerely yours.
    Peter

  • "could not start the Oracle BI Presentation Server on Local computer error"

    Hello Folks,
    i am trying to start the OBIEE Presentation services, The OBIEE server and Java Host Services are started.
    i am getting this error and i didnt change any settings and finally getting this error
    "Windows could not start the Oracle BI Presentation Server on Local Computer. For more information, review the System Even Log. If this is a non Microsoft service contact the service vendor, and refer to service-specific error code -1."
    thanks

    Here is the solution from another freind
    1. Stop BI Server Service > Start BI Server Service > Start BI Presentation Service. If that doesn't work...
    2. Restart machine and follow step 1. If that doesn't work...
    3. Check instantconfig.ini file and check syntax is correct. Also check java directory path mentioned is the valid one. If that doesn't work...
    4. Rename the catalog folder to something else and follow step 1. It will create new catalog folder. Then copy _Shared from old catalog folder and you are good to go.
    catalog folder will be in oraclebidata/web/catalog...
    either delete the folder and create a new empty one or rename it
    also have a look at instanceconfig.ini file
    thanks

  • Question when I log into Firefox, the screen scrolls down and I have to use the side-bar to go back up to type my query into the 'search' window. How can I stop that and get Firefox to start with the 'search' window accessible? With thanks, Peter

    Question
    when I log into Firefox, the screen scrolls down and I have to use the side-bar to go back up to type my query into the 'search' window. How can I stop that and get Firefox to start with the 'search' window accessible? With thanks, Peter

    See this. <br />
    https://support.mozilla.com/en-US/kb/Firefox+hangs#Hang_at_exit

  • When I log into Firefox, the screen scrolls down and I have to use the side-bar to go back up to type my query into the 'search' window. How can I stop that and get Firefox to start with the 'search' window accessible? With thanks, Peter

    Question
    When I log into Firefox, the screen scrolls down and I have to use the side-bar to go back up to type my query into the 'search' window. How can I stop that and get Firefox to start with the 'search' window accessible? With thanks, Peter

    See this. <br />
    https://support.mozilla.com/en-US/kb/Firefox+hangs#Hang_at_exit

  • Task scheduler is showing success but not running job

    Hello, I have a relatively simple .net application that I realized when ran through the Task Scheduler of a Windows 2008 R2 server it shows in the status that i completed successfully but apparently did not run at all from looking at the log file. 
    When I just manually execute this program it runs perfectly fine.  I am using myself as the user to run this task and have full permissions. 
    I also tried a test batch file that just echos some text into a text file.  Same issue.... shows that it runs ok in task scheduler but doesnt do anything while running it manually works fine.
    Any ideas of what could be causing this?  thanks

    Hi Nehemiah,
    I ran the test batch file as below and work without issue:
    @echo This is a test> d:\test.txt
    And this is my setting:
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • I'm trying to run a scheduled task as system, but it will not run my powershell script

    I have a powershell script I created that uses credentials within the script to connect to a network resource to copy files every night. It works fine if I just run the script manually. but I need to run this as a scheduled task, preferably as system. I
    have checked "run with highest privileges" still no luck. 
    If I change the user to my account it works fine, but I need it to work without the use of my account. Is this some kind of security policy problem or what would cause this? I figure having the credentials within the script would work, but not so much.
    Paul Arbogast

    I have a powershell script I created that uses credentials within the script to connect to a network resource to copy files every night. It works fine if I just run the script manually. but I need to run this as a scheduled task, preferably as system. I
    have checked "run with highest privileges" still no luck. 
    If I change the user to my account it works fine, but I need it to work without the use of my account. Is this some kind of security policy problem or what would cause this? I figure having the credentials within the script would work, but not so much.
    Paul Arbogast
    Is the Execution Policy set for the script?
    With this information it sounds to be.....
    Take a look @
    http://technet.microsoft.com/en-us/library/ee176961.aspx
    Best Wishes,

  • Uninstall Adobe Shockwave 12.1.1.151 scripts run successfully but doesn't uninstall program

    I am using sccm2012 R2 and trying to deploy package to uninstall Adobe shockwave player 12.1.1.151 using following script
    cmd /c shockwave-test.bat
    pushd "%~dp0"
    msiexec /uninstall sw_lic_full_installer.msi
    If run script manually on command prompt it uninstall Adobe shockwave player but deployment using sccm doesn't work.
    Deployment status - success,
    Message ID: 10008
    program completed with success
    Program and features still have Adobe shockwave player listed there.
    I have also tried msiexec /x using product code as application using windows installer and registry key as detection method but same results
    Here are logs of Execmgr.log file
    Raising client SDK event for class CCM_Program, instance CCM_Program.PackageID="AO10022F",ProgramID="Uninstall shockwave - test", actionType 1l, value NULL, user NULL, session 4294967295l, level 0l, verbosity 30l
    execmgr 06/11/2014 6:45:07 PM
    2480 (0x09B0)
      Processing [{40BF1D3A-8F3D-4088-A1F7-ED85EB5EFF7F}, 0]: OnContentAvailable
    execmgr
    06/11/2014 6:45:11 PM 4664 (0x1238)
    [{40BF1D3A-8F3D-4088-A1F7-ED85EB5EFF7F}]: Content Version 12 is available for advert RET210E2, pkg: AO10022F, program Uninstall shockwave - test.
    execmgr 06/11/2014 6:45:11 PM
    4664 (0x1238)
    An existing MTC token was not supplied, using ExecutionRequest's Id as MTC token and this execution request is the owner of resultant MTC task.
    execmgr 06/11/2014 6:45:11 PM
    4664 (0x1238)
    Request a MTC task for execution request of package AO10022F, program Uninstall shockwave - test with request id: {CBD5312D-CAAB-446C-BB2F-7DB515F6EE79}
    execmgr 06/11/2014 6:45:11 PM
    4664 (0x1238)
    Execution Request for advert RET210E2 package AO10022F program Uninstall shockwave - test state change from WaitingContent to Ready
    execmgr 06/11/2014 6:45:12 PM
    4664 (0x1238)
    MTC task with id {CBD5312D-CAAB-446C-BB2F-7DB515F6EE79}, changed state from 0 to 4
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Raising client SDK event for class CCM_Program, instance CCM_Program.PackageID="AO10022F",ProgramID="Uninstall shockwave - test", actionType 1l, value , user NULL, session 4294967295l, level 0l, verbosity 30l
    execmgr 06/11/2014 6:45:12 PM
    4664 (0x1238)
      Processing [{40BF1D3A-8F3D-4088-A1F7-ED85EB5EFF7F}, 0]: RemoveNotification
    execmgr 06/11/2014 6:45:12 PM
    4664 (0x1238)
    MTC signaled SWD execution request with program id: Uninstall shockwave - test, package id: AO10022F for execution.
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Sending ack to MTC for task with id: {CBD5312D-CAAB-446C-BB2F-7DB515F6EE79}
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Executing program cmd /c shockwave-test.bat in Admin context
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Execution Request for advert RET210E2 package AO10022F program Uninstall shockwave - test state change from Ready to NotifyExecution
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Raising client SDK event for class CCM_Program, instance CCM_Program.PackageID="AO10022F",ProgramID="Uninstall shockwave - test", actionType 1l, value , user NULL, session 4294967295l, level 0l, verbosity 30l
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Checking content location C:\Windows\ccmcache\1g for use
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Successfully selected content location C:\Windows\ccmcache\1g
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Executing program as a script execmgr
    06/11/2014 6:45:12 PM 1624 (0x0658)
    Found executable file cmd with complete path C:\Windows\system32\cmd.exe
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Successfully prepared command line "C:\Windows\system32\cmd.exe" /c shockwave-test.bat
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Command line = "C:\Windows\system32\cmd.exe" /c shockwave-test.bat, Working Directory = C:\Windows\ccmcache\1g\
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Running "C:\Windows\system32\cmd.exe" /c shockwave-test.bat with 32bitLauncher
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Created Process for the passed command line
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Raising event:
    [SMS_CodePage(437), SMS_LocaleID(1033)]
    instance of SoftDistProgramStartedEvent
    ClientID = "GUID:d0c3da0e-ff4f-48c2-8612-805a8de31191";
    CommandLine = "\"C:\\Windows\\system32\\cmd.exe\" /c shockwave-test.bat";
    DateTime = "20141107004512.476000+000";
    PackageName = "AO10022F";
    ProcessID = 1264;
    ProgramName = "Uninstall shockwave - test";
    ThreadID = 1624;
    UserContext = "NT AUTHORITY\\SYSTEM";
    WorkingDirectory = "C:\\Windows\\ccmcache\\1g\\";
    execmgr
    06/11/2014 6:45:12 PM 1624 (0x0658)
    Raised Program Started Event for Ad:xx210E2, Package:AO10022F, Program: Uninstall shockwave - test
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Raising client SDK event for class CCM_Program, instance CCM_Program.PackageID="AO10022F",ProgramID="Uninstall shockwave - test", actionType 1l, value NULL, user NULL, session 4294967295l, level 0l, verbosity 30l
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Raising client SDK event for class CCM_Program, instance CCM_Program.PackageID="AO10022F",ProgramID="Uninstall shockwave - test", actionType 1l, value , user NULL, session 4294967295l, level 0l, verbosity 30l
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    MTC task with id {CBD5312D-CAAB-446C-BB2F-7DB515F6EE79}, changed state from 4 to 5
    execmgr 06/11/2014 6:45:12 PM
    1624 (0x0658)
    Program exit code 0 execmgr
    06/11/2014 6:45:21 PM 4276 (0x10B4)
    Looking for MIF file to get program status execmgr
    06/11/2014 6:45:21 PM 4276 (0x10B4)
    Thanks in advance for help and suggestions
    RJ
    RJ09

    Thanks for quick reply Daniel
    I tried your suggestion and in log files I found error
     Product: Adobe Shockwave Player 12.1 -- Error 2753.The File 'swhelper_1211151.exe' is not marked for installation.
    Error 2753.The File 'swhelper_1211151.exe' is not marked for installation.
    Property(S): ErrorDialog = SetupError
    MSI (s) (34:D8) [14:08:29:832]: Windows Installer removed the product. Product Name: Adobe Shockwave Player 12.1. Product Version: 12.1.1.151. Product Language: 1033. Manufacturer: Adobe Systems, Inc. Removal success or error status: 1603.
    RJ09

Maybe you are looking for

  • Quotation marks appearing as left or right arrows, does anyone know what is causing this?

    Hi there we are using Indesign 2014, I am not sure if that has anything to do with this or not, but certain paragraphs in a document have a bug, where by when you type in a quotation mark (') a left or right arrow appears. We have found that if we cl

  • Ole excel application from abap

    Hi all ,            I   an calling  one excel application  from abap .  I   don't want to make excel file visible ,  but insted  want to save and close the file , by using method saveas for excel application  and later i want to see the file . file n

  • Query on payment methods in vendor master

    Hi, in vendor master there is a field named payment methods (LFB1-ZWELS) but I cannot use table RF02K to find the descriptions. What table can I use to find descriptions and where can I customize it from SPRO Best regards

  • Cannot see BI system in search

    Hi experts, I have configured BI backend system from CE portal and the connection test is successful. However, after I configured, I logged into VC and cannot find BI system I configured in "Search" drop-down list. I can only see Web service destinat

  • Mp3 download problem

    I cannot uninstall Windows Media Player from add-ons.My problem is when I click any Mp3's download button then it open instead of save the file.So, I need to uninstall Windows Media Player.