Windows 2008 R2 backup fails with event 521 error code 2155348001

Windows Server 2008 R2 SP1.  Hyper-V role installed. 
OS on drive C.  All VMs stored on Drive D.
I am attempting to run a Bare Metal backup of the host system to a network share. 
Drive D is not included in the backup job.  I am getting the following error:
Log Name:      Application
Source:        Microsoft-Windows-Backup
Date:          1/10/2014 11:28:52 PM
Event ID:      521
Task Category: None
Level:         Error
Keywords:     
User:          SYSTEM
Computer:      SHAQTUS.scdl.local
Description:
The backup operation that started at '‎2014‎-‎01‎-‎11T04:08:50.683000000Z' has failed because the Volume Shadow Copy Service operation to create a shadow copy of the volumes being backed up failed with following error code '2155348001'. Please review the event
details for a solution, and then rerun the backup operation once the issue is resolved.
Reviewing event details, as suggested, does not offer any solution.
I have tried the suggested solutions in other similar threads of increasing the timeout value with the registry entry. 
This does not work.
I have not tried reregistering the VSS writers manually, as the only links I have found are for server 2003/2008 (not R2) and explicitly state that they won’t work on higher versions of the OS, since they now utilize manifests and the manual procedure could
cause problems for those servers. Haven't found similar procedures for 2008 R2.
I have been able to narrow this down a bit.
A Windows 2008 R2 SP1 server with Hyper-V installed – backup to a network share is successful;
Install the DPM 2012 agent – same backup fails with the 2155348001 error.
We use DPM 2012 to backup VMs, but DPM cannot perform a bare metal backup/restore of server and the 2012 version no longer has the DPMSRT feature. 
I prefer to run Bare Metal Backup to a file server share.
Stuck on this one.
Rick

Hi, 
The issue is related to DPM, I would suggest you ask for help from DPM forums:
http://social.technet.microsoft.com/Forums/en-US/home?forum=dataprotectionmanager
Regards, 
Mandy
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • Windows 2008 failover clustering fails with Event ID 1205 1069 1558

    I have a two nodes Windows 2008 and SQL 2008 cluster running in active\passive.  I was restarting
    my nodes after applying windows update then I received the following error message below within Failover Cluster Manager. I get errors with Event ID 1205 1069 1558  this happens every month ..  Could someone help me on to find the root cause for
    this issue how to check if it is an issue with network or Quorum drive  ?

    First, take a look at the 1069 event. This should point out which resource is failing. 
    Then, open a command prompt and run the command: cluster log /g
    This will generate a cluster.log file that you can use to further troubleshoot this issue. The log file will be located in the C:\Windows\Cluster\Reports folder.
    The cluster.log will be based on GMT time, so you may need to translate this to the local time zone in order to find the events you are looking for. Look for ERR or WARN messages and these should hopefully give you more insight as to why the resource is
    failing.
    Hope this helps. 
    Visit my blog about multi-site clustering

  • Backup Fails with Invalid RECID Error

    Hi All,
    Please help me to understand Caution -section
    below text is from
    [http://download.oracle.com/docs/cd/B10501_01/server.920/a96566/rcmtroub.htm#447765]
    Backup Fails with Invalid RECID Error: Solution 2
    This solution is more difficult than solution 1:
    To create the control file with SQL*Plus:
       1. Connect to the target database with SQL*Plus. For example, enter:
          % sqlplus 'SYS/oracle@trgt AS SYSDBA'
       2. Mount the database if it is not already mounted:
          SQL> ALTER DATABASE MOUNT;
       3. Back up the control file to a trace file:
          SQL> ALTER DATABASE BACKUP CONTROLFILE TO TRACE;
       4. Edit the trace file as necessary. The relevant section of the trace file looks something like the following:
          # The following commands will create a new control file and use it
          # to open the database.
          # Data used by the recovery manager will be lost. Additional logs may
          # be required for media recovery of offline data files. Use this
          # only if the current version of all online logs are available.
          STARTUP NOMOUNT
          CREATE CONTROLFILE REUSE DATABASE "TRGT" NORESETLOGS  ARCHIVELOG
          --  STANDBY DATABASE CLUSTER CONSISTENT AND UNPROTECTED
              MAXLOGFILES 32
              MAXLOGMEMBERS 2
              MAXDATAFILES 32
              MAXINSTANCES 1
              MAXLOGHISTORY 226
          LOGFILE
            GROUP 1 '/oracle/oradata/trgt/redo01.log'  SIZE 25M,
            GROUP 2 '/oracle/oradata/trgt/redo02.log'  SIZE 25M,
            GROUP 3 '/oracle/oradata/trgt/redo03.log'  SIZE 500K
          -- STANDBY LOGFILE
          DATAFILE
            '/oracle/oradata/trgt/system01.dbf',
            '/oracle/oradata/trgt/undotbs01.dbf',
            '/oracle/oradata/trgt/cwmlite01.dbf',
            '/oracle/oradata/trgt/drsys01.dbf',
            '/oracle/oradata/trgt/example01.dbf',
            '/oracle/oradata/trgt/indx01.dbf',
            '/oracle/oradata/trgt/tools01.dbf',
            '/oracle/oradata/trgt/users01.dbf'
          CHARACTER SET WE8DEC
          # Take files offline to match current control file.
          ALTER DATABASE DATAFILE '/oracle/oradata/trgt/tools01.dbf' OFFLINE;
          ALTER DATABASE DATAFILE '/oracle/oradata/trgt/users01.dbf' OFFLINE;
          # Configure RMAN configuration record 1
          VARIABLE RECNO NUMBER;
          EXECUTE :RECNO := SYS.DBMS_BACKUP_RESTORE.SETCONFIG('CHANNEL','DEVICE TYPE DISK
          DEBUG 255');
          # Recovery is required if any of the datafiles are restored backups,
          # or if the last shutdown was not normal or immediate.
          RECOVER DATABASE
          # All logs need archiving and a log switch is needed.
          ALTER SYSTEM ARCHIVE LOG ALL;
          # Database can now be opened normally.
          ALTER DATABASE OPEN;
          # Commands to add tempfiles to temporary tablespaces.
          # Online tempfiles have complete space information.
          # Other tempfiles may require adjustment.
          ALTER TABLESPACE TEMP ADD TEMPFILE '/oracle/oradata/trgt/temp01.dbf' REUSE;
          # End of tempfile additions.
       5. Shut down the database:
          SHUTDOWN IMMEDIATE
       6. Execute the script to create the control file, recover (if necessary), archive the logs, and open the database:
          STARTUP NOMOUNT
          CREATE CONTROLFILE ...;
          EXECUTE ...;
          RECOVER DATABASE
          ALTER SYSTEM ARCHIVE LOG CURRENT;
          ALTER DATABASE OPEN ...;
    Caution:
          If you do not open with the RESETLOGS option,
    then two copies of an archived redo log for a given log sequence number may
    exist--even though these two copies have completely different contents.
    For example, one log may have been created on the original host and the other on the new host.
    If you accidentally confuse the logs during a media recovery,
    then the database will be corrupted but Oracle and RMAN cannot detect the problem.

    Please help me to understand Caution -section
    Caution:
    If you do not open with the RESETLOGS option,
    then two copies of an archived redo log for a given log sequence number may
    exist--even though these two copies have completely different contents.
    For example, one log may have been created on the original host and the other on the new host.
    If you accidentally confuse the logs during a media recovery,
    then the database will be corrupted but Oracle and RMAN cannot detect the problem.As per my understanding it says. If you don't open database with RESETLOGS option then there may be archived logs with log sequence number which is already archived on the source host. This may happen due to difference in RECIDs. Now when the database needs media recovery for this particular log sequence, you may provide any of them. So in this case, RMAN and Oracle will not be able to differentiate the two files and can accept any of the archived log files during recovery. Since the contents of two archived logs are different, because they are generated at different times and they contains different transactions. So, internally it corrupts your database.
    Rgds.

  • Windows Server 2008 R2 Backup failing with error - 0x8004231F

    Hi,
    I have Windows Server 2008 R2 Web Edition. Everything was working fine until recently. I tried checking for the log files, but I see that there are no log files that are created now in the location C:\Windows\Logs\WindowsServerBackup. The only files that
    are being created recently are of the type mentioned below.
    Wbadmin.1.etl
    WbadminUI.0.etl
    etc.
    I tried removing the old backup and starting a new backup. But, even now it is failing with the same error.
    When running the backup from the PowerShell, the output is as below.
    PS C:\Users\administrator> Wbadmin start backup -backupTarget:\\localhost\E$\WindowsImageBackup\Server01 -systemState -vss
    Copy
    wbadmin 1.0 - Backup command-line tool
    (C) Copyright 2004 Microsoft Corp.
    Note: The backed up data cannot be securely protected at this destination.
    Backups stored on a remote shared folder might be accessible by other
    people on the network. You should only save your backups to a location
    where you trust the other users who have access to the location or on a
    network that has additional security precautions in place.
    Retrieving volume information...
    This will back up volume System Reserved (100.00 MB) (Selected Files),SAN(I:) (Selected Files),Local Disk(C:) (Selected
    Files) to \\localhost\E$\WindowsImageBackup\Server01.
    Do you want to start the backup operation?
    [Y] Yes [N] No y
    The backup operation to \\localhost\E$\WindowsImageBackup\Server01 is starting.
    Starting to back up the system state [12/8/2013 9:29 AM]...
    Creating a shadow copy of the volumes specified for backup...
    Creating a shadow copy of the volumes specified for backup...
    Creating a shadow copy of the volumes specified for backup...
    Summary of the backup operation:
    The backup of the system state failed [12/8/2013 9:30 AM].
    Log of files successfully backed up:
    C:\Windows\Logs\WindowsServerBackup\Backup-08-12-2013_09-29-49.log
    Log of files for which backup failed:
    C:\Windows\Logs\WindowsServerBackup\Backup_Error-08-12-2013_09-29-49.log
    There is not enough disk space to create the volume shadow copy on the storage location. Make sure that, for all volumes
     to be backup up, the minimum required disk space for shadow copy creation is available. This applies to both the backup
     storage destination and volumes included in the backup.
    Minimum requirement: For volumes less than 500 megabytes, the minimum is 50 megabytes of free space. For volumes more th
    an 500 megabytes, the minimum is 320 megabytes of free space.
    Recommended: At least 1 gigabyte of free disk space on each volume if volume size is more than 1 gigabyte.
    ERROR - A Volume Shadow Copy Service operation error has
    occurred: (0x8004231f)
    Insufficient storage available to create either the shadow copy storage file or other shadow copy data.
    If you see the free space available in each of the drives, they are in plenty.
    C:\ 7.5 GB free of 70 GB
    E:\ 250 GB free of 499 GB
    I:\ 86.7 GB free of 350 GB
    I am out of any hints on how I can proceed now. Has any one had similar issues? Can any one give any hint on this? Thanks.
    Thanks.

    Some Additional info.
    Shadow Copy Storage association
       For volume: (\\?\Volume{a9fb0474-f1bd-11e0-b235-806e6f6e6963}\)\\?\Volume{a9f
    b0474-f1bd-11e0-b235-806e6f6e6963}\
       Shadow Copy Storage volume: (\\?\Volume{a9fb0474-f1bd-11e0-b235-806e6f6e6963}
    \)\\?\Volume{a9fb0474-f1bd-11e0-b235-806e6f6e6963}\
       Used Shadow Copy Storage space: 0 B (0%)
       Allocated Shadow Copy Storage space: 0 B (0%)
       Maximum Shadow Copy Storage space: 32 MB (32%)
    Shadow Copy Storage association
       For volume: (I:)\\?\Volume{ddf6a51c-1282-11e3-b291-000c293b01d1}\
       Shadow Copy Storage volume: (I:)\\?\Volume{ddf6a51c-1282-11e3-b291-000c293b01
    d1}\
       Used Shadow Copy Storage space: 0 B (0%)
       Allocated Shadow Copy Storage space: 0 B (0%)
       Maximum Shadow Copy Storage space: 35 GB (10%)
    Shadow Copy Storage association
       For volume: (E:)\\?\Volume{0e3bf713-125d-11e3-b2dd-000c293b01bd}\
       Shadow Copy Storage volume: (E:)\\?\Volume{0e3bf713-125d-11e3-b2dd-000c293b01
    bd}\
       Used Shadow Copy Storage space: 0 B (0%)
       Allocated Shadow Copy Storage space: 0 B (0%)
       Maximum Shadow Copy Storage space: 149.999 GB (30%)
    Shadow Copy Storage association
       For volume: (C:)\\?\Volume{a9fb0475-f1bd-11e0-b235-806e6f6e6963}\
       Shadow Copy Storage volume: (C:)\\?\Volume{a9fb0475-f1bd-11e0-b235-806e6f6e69
    63}\
       Used Shadow Copy Storage space: 0 B (0%)
       Allocated Shadow Copy Storage space: 0 B (0%)
       Maximum Shadow Copy Storage space: 4.99 GB (7%)
    Hope this might also help you experts to get a little more information.

  • Backup fails with System writer error

    Hi,
    We have a networker backup solution in place. Backup fails on one of the windows 2012 server. Event log below. I am not sure how to resolve this issue. Can someone please help?
    Log Name:      Application
    Source:        VSS
    Date:          6/17/2014 5:01:41 PM
    Event ID:      8193
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      ---
    Description:
    Volume Shadow Copy Service error: Unexpected error calling routine GetVolumeNameForVolumeMountPoint is now failing on the volume, winerror 0x00000005. .  hr = 0x80070005, Access is denied.
    Operation:
       PrepareForSnapshot Event
    Context:
       Execution Context: Writer
       Writer Class Id: {e8132975-6f93-4464-a53e-1050253ae220}
       Writer Name: System Writer
       Writer Instance ID: {13f27935-f32a-4e30-bdb6-d87894cecf12}
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="VSS" />
        <EventID Qualifiers="0">8193</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-06-17T15:01:41.000000000Z" />
        <EventRecordID>4864</EventRecordID>
        <Channel>Application</Channel>
        <Computer>
        <Security />
      </System>
      <EventData>
        <Data>GetVolumeNameForVolumeMountPoint is now failing on the volume, winerror 0x00000005. </Data>
        <Data>0x80070005, Access is denied.
    </Data>
        <Data>
    Operation:
       PrepareForSnapshot Event
    Context:
       Execution Context: Writer
       Writer Class Id: {e8132975-6f93-4464-a53e-1050253ae220}
       Writer Name: System Writer
       Writer Instance ID: {13f27935-f32a-4e30-bdb6-d87894cecf12}</Data>
        <Binary>2D20436F64653A20565353415049435030303030313131332D2043616C6C3A20565353415049435030303030313035372D205049443A202030303030303434302D205449443A202030303030313539362D20434D443A2020433A5C57696E646F77735C73797374656D33325C737663686F73742E657865202D6B204E6574776F726B53657276696365202020202020202D20557365723A204E616D653A204E5420415554484F524954595C4E4554574F524B20534552564943452C205349443A532D312D352D3230</Binary>
      </EventData>
    </Event>

    Hi,
    in my case, I didn't have "System Writer" shown in the Writers list. I tried everything to put it up and running, but without any luck. I even tried re-registering writers, which was a bit risky, but that didn't help either.
    Then I have found this hotfix, installed it, and it worked after it.
    Anyway, you can find here on technet few topics about this particular issue. For the others, something else worked. Please, take a look:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/f4c7fb5b-162a-4c75-994c-b75fbd1dece7/vss-system-writer-is-missing
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/4458947a-623e-45c1-b8e4-868aad1e93b0/missing-vss-system-writer-and-capi2-error-in-event-log?forum=winserverfiles
    https://kb.acronis.com/content/45776#Win2008 - pay attention what is for 2003 and what for 2008, you can end up with broken system
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/764791ff-ecb5-4716-9f1c-9e22852e0f6b/resolved-backup-failing-on-server-2008-r2-system-writer-missing?forum=windowsbackup
    http://social.technet.microsoft.com/wiki/contents/articles/7309.backup-fails-with-error-message-writer-missing-or-failed-or-timed-out-or-waiting-for-completion-in-vssadmin.aspx
    You can try all of this (I did), but this hotfix saved my day in the end.
    Hope this helps.
    If this helped you resolve your issue, please mark it Answered, thanks! Kind regards

  • Windows 8 USB recovery fails with CTOERROR.flg error

    Windows 8 recovery using HP supplied USB recovery device failed with CTOERROR.flg error.
    [22:53:29.29] ChkErrBB.CMD : Detect some error during PININST_BBV.
    [22:53:29.31] ChkErrBB.CMD : Check c:\system.sav\logs\BurnBootWarn.log
    [22:53:29.31] ChkErrBB.CMD : or, check c:\system.sav\logs\BurnBootMerge.log
    I have tried all the scenarios which are described in this forum but no success.
    Can anyone suggest to which date should i reset the BIOS or anyother workarounds??
    I have run diagnostic tests on Memory and Disks and both are fine.
    * There is a big problem with the HP recovery manager which fails to recover windows. Many have reported in this forum and other forums....but HP has failed to attend this issue and fix the problem in their recovery manger or atleast show a workaround to restore the windows.
    My laptop was drastically slow after the reinstall from the HP support.....and now when i decided to reset and recover the windows.....it fails. Unfortunately my laptop is out of warranty.
    This is pushing me away from any HP and will never ever buy or recommend anyone to buy a HP product.
    History about previous issue with this laptop:
    Order # BDRN598901
    Order # BDTP356101
    * I had an issue with the HP recovery manager in creating recovery disc. I did contact the HP support as my warranty was still in place. They took my laptop and reinstalled the OS and sent it back to me. 
    Even after that i could not create a recovery disk and they send me a USB recovery device. 
    Service Order Product Service Event Order Status Estimated Delivery Date *MM/DD/YYYY Track this Shipment
    BDTP356101 USB - WINDOWS 8 64B RECOVERY KIT SW FULFILLMENT POSTAL DELIVERY GROUND Shipped 05/05/2014 POSTAL SERVICE (STANDARD)
    Service Order Product Service Event Order Status Estimated Delivery Date *MM/DD/YYYY Track this Shipment BDRN598901 HP ENVY 4-1115DX TouchSmart Ultrabook BOX PLUS PICKUP & REPAIR, 2 DAY SHIPPING Shipped 04/30/2014 FED-EX NEXT DAY (AFTERNOON)
    Thanks,
    KB29

    Set the date in BIOS to 1/02/2012. Save & Exit. Boot with Recovery, let it run through the process- but on the first reboot initiated by recovery enter BIOS again to insure date is still set to 2012. If not change it again, then let recovery resume.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Backups fail with Insufficient privileges error

    Oracle 9.2.0.5 database
    Solaris Operating Sysstem
    I needed to recreate one database recently from the backup. I used DUPLICATE TARGET DATABASE comamand to recreate database. And once client confirmed I removed old database and copied this new database to original location and recreated controlfile.
    But the tape backups are failing ever since then.
    Is it because of password file problems ? This is a a totally new database and also DBID is different . But database name is same and created from backups of old database.
    Backups fail with this error.
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    ORA-01031: insufficient privileges
    But the RMANUSER has the same privileges as in other databases on this server.
    SQL> select username,sysdba,sysoper from v$pwfile_users;
    USERNAME SYSDB SYSOP
    SYS TRUE TRUE
    RMANUSER TRUE FALSE
    SQL> select privilege from dba_sys_privs where grantee='RMANUSER';
    PRIVILEGE
    CREATE SESSION
    UNLIMITED TABLESPACE
    How to resolve this issue ?

    I actually recreated the password file using orapwd utility. But when checked the V$PWFILE_USERS it showed no users. Not even SYS
    And I tired to grant SYSDBA to RMANUSER. It failed with the following error.
    ERROR at line 1:
    ORA-01999: password file mode has changed from 'exclusive' to 'shared'
    But the show parameter REMOTE showed that remote_login_passwordfile is still EXCLUSIVE. And database uses an INIT file, not SPFILE.
    I had to move back the copy of Old password file and now it shows two users (SYS and RMANUSER) again.

  • Backup fails with I/O error unpredictably

    I have a TC running TM backing up two iMacs and a Mac Pro. One of the iMacs, which is connected wirelessly, will sometimes (~ once per day) fail with the following message on TM buddy:
    +Starting standard backup+
    +FSMountServerVolumeSync failed with error: -36 for url: afp://[Username]%20[Username]@Amborella.local/Amborella+
    +Backup failed with error: 19+
    "Amborella" being the name of the TC.
    If, when this occurs, I connect manually to the TC through Apple Talk and start a manual backup, it works fine. I've tried repairing the disk, but Disk Utility doesn't find a problem. The computer has a short, unique name under Sharing settings ("Cakile").
    Any suggestions?

    I probably should have mentioned that, before this problem arose, the hard drive of the computer in question died and was replaced, following which I restored the files from the TC.

  • Windows 2008 R2 Sp1 backup failing with Event Id 517 and Error Code: 2147942487

    We have a windows share that we dump multiple windows backup images from our servers.   We have 1 server consistently failing when performing a manual "Backup Once...." operation.  
    The error message in the Windows Backup gui is: "Failed The parameter is incorrect"  
    The event log shows an error of 517 with the message: "
    The backup operation that started at '‎2015‎-‎01‎-‎12T14:25:20.681861800Z' has failed with following error code '2147942487' (One or more arguments are invalid). Please review the event details for a solution, and then rerun the backup operation once the
    issue is resolved.
    The strange part is when we choose a different location to accept the backup we have success.  The backup starts, but fails between 1-6 GB transferred. 
    Any assistance would be appreciated.

    Hi,
    Do you mean that if you change the backup location, the backup could be started - but still fail after backing up 1 - 6 GB data?
    One of the possible cause is an incorrect partition table entry and NTFS total sectors.
    Please test to shrink the volume you are going to backup for several MB. 
    Right click volume >>Select shrink, shrink several MB (such as 3MB).
    Then extend the volume back to original size. You can right click on volume and select Extend volume.
    When it finished, see if issue still exists.  
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Windows Server 2012 - Backup failing with Exchange - The application will not be available for recovery from this backup. the consistency check failed

    Hi
    We have a Windows 2012 server with Exchange 2013, all is working fine except now i am getting issues with the backup.
    'Exchange - The application will not be available for recovery from this backup. the consistency check failed for the component Microsoft Exchange Server'
    I have checked the database all is fine, i have created a new db and move all mailbox;s over and then removed the old db, i have enabled circular logging and then disabled it, it seems no matter what i do i cannot get a full backup!
    i did have to restore the server once and the backups still worked for about 4 days after that and then stopped, i have also tried to remove and re add the backup role!
    i am stumped, any advice would be great!

    Hi
    Ok, i created a test db and tried to back it up right away, it failed, i did not add any mailbox's to it either. i got quite a few events in the windows logs, as well as the same event above i got the following:
    Log Name:      Application
    Source:        MSExchangeRepl
    Date:          21/01/2013 10:16:30
    Event ID:      2038
    Task Category: Exchange VSS Writer
    Level:         Warning
    Keywords:      Classic
    User:          N/A
    Computer:      NERDS-DC01.nerds.local
    Description:
    Microsoft Exchange VSS Writer backup failed. No log files were truncated. Instance 75754d0d-8dfe-4909-8beb-5a4f824254a9. Database 4843b37c-7b3c-42b2-8b57-1393615c2c15.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="MSExchangeRepl" />
        <EventID Qualifiers="32772">2038</EventID>
        <Level>3</Level>
        <Task>2</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-01-21T10:16:30.000000000Z" />
        <EventRecordID>261645</EventRecordID>
        <Channel>Application</Channel>
        <Computer>NERDS-DC01.nerds.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>75754d0d-8dfe-4909-8beb-5a4f824254a9</Data>
        <Data>4843b37c-7b3c-42b2-8b57-1393615c2c15</Data>
      </EventData>
    </Event>
    AND
    Log Name:      Application
    Source:        MSExchangeRepl
    Date:          21/01/2013 10:16:30
    Event ID:      2038
    Task Category: Exchange VSS Writer
    Level:         Warning
    Keywords:      Classic
    User:          N/A
    Computer:      NERDS-DC01.nerds.local
    Description:
    Microsoft Exchange VSS Writer backup failed. No log files were truncated. Instance 75754d0d-8dfe-4909-8beb-5a4f824254a9. Database db5826f3-1029-4219-ad80-441a0e94537a.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="MSExchangeRepl" />
        <EventID Qualifiers="32772">2038</EventID>
        <Level>3</Level>
        <Task>2</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-01-21T10:16:30.000000000Z" />
        <EventRecordID>261646</EventRecordID>
        <Channel>Application</Channel>
        <Computer>NERDS-DC01.nerds.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>75754d0d-8dfe-4909-8beb-5a4f824254a9</Data>
        <Data>db5826f3-1029-4219-ad80-441a0e94537a</Data>
      </EventData>
    </Event>
    and
    Log Name:      Application
    Source:        MSExchangeRepl
    Date:          21/01/2013 10:16:30
    Event ID:      2034
    Task Category: Exchange VSS Writer
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      NERDS-DC01.nerds.local
    Description:
    The Microsoft Exchange Replication service VSS Writer (Instance 75754d0d-8dfe-4909-8beb-5a4f824254a9) failed with error FFFFFFFC when processing the backup completion event.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="MSExchangeRepl" />
        <EventID Qualifiers="49156">2034</EventID>
        <Level>2</Level>
        <Task>2</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-01-21T10:16:30.000000000Z" />
        <EventRecordID>261649</EventRecordID>
        <Channel>Application</Channel>
        <Computer>NERDS-DC01.nerds.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>75754d0d-8dfe-4909-8beb-5a4f824254a9</Data>
        <Data>FFFFFFFC</Data>
      </EventData>
    </Event>
    and
    Log Name:      Application
    Source:        SPP
    Date:          21/01/2013 10:16:30
    Event ID:      16389
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      NERDS-DC01.nerds.local
    Description:
    Writer Microsoft Exchange Writer experienced retryable error during shadow copy creation. Retrying...  More info: .
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SPP" />
        <EventID Qualifiers="0">16389</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-01-21T10:16:30.000000000Z" />
        <EventRecordID>261650</EventRecordID>
        <Channel>Application</Channel>
        <Computer>NERDS-DC01.nerds.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>Microsoft Exchange Writer</Data>
        <Data>
        </Data>
        <Data>The writer experienced a transient error.  If the backup process is retried, the error may not reoccur. (0x800423F3)</Data>
        <Data>
        </Data>
        <Binary>00000000A5120000981200000000000042BEB7C511CAC619E59C92030000000000000000</Binary>
      </EventData>
    </Event>

  • Backup fails with a CPIO error even though starting with DD

    Hi All,
    I have started a db backup of a sap system directly onto a tape.
    I am using DD since size of each datafile is more than 2 GB.
    In a total of 112 data files, 109 got copied but suddenly, the following error came and brbackup got terminated.
    This has happened for the second time and that too after using a separate set of tapes.
    Can you please provide me your views on it. I am unable to understand why should the error contain "CPIO" if i am using DD.
    The parameter settings have been made correctly in the init<SID>.sap file.
    Regards,
    Hari Kishan
    BR0351I Restoring /oracle/OBC/sapbackup/.tape.hdr0
    BR0355I from /dev/rmt726.1 ...
    BR0278E Command output of 'LANG=C cd /oracle/OBC/sapbackup && LANG=C
    cpio -iuvB .tape.hdr0 < /dev/rmt726.1':
    Can't read input
    If you want to go on, type device/file name when ready
    10 blocks
    .tape.hdr0
    BR0280I BRBACKUP time stamp: 2009-12-09 00.57.43
    BR0279E Return code from 'LANG=C cd /oracle/OBC/sapbackup && LANG=C
    cpio -iuvB .tape.hdr0 < /dev/rmt726.1': 0
    BR0359E Restore of /oracle/OBC/sapbackup/.tape.hdr0 from /dev/rmt726.1
    failed due to previous errors
    BR0218E Checking label on volume in device /dev/rmt726.1 failed
    BR0056I End of database backup: becbufwv.ant 2009-12-09 00.57.43
    BR0280I BRBACKUP time stamp: 2009-12-09 00.57.45
    BR0054I BRBACKUP terminated with errors

    Hello,
    in addition to all the backup files, brbackup will always write one more file to the tape, right at the beginning. This file is called .tape.hdr0. It contains, in essence, the name of the tape and date of the current backup. As far as I know this file will always be written by cpio, no matter what your tape_copy_command is. At the end brbackup will check this file again, and that step failed here.
    So it seems there is a problem with either your tape or your tape drive.
    But don't worry about cpio!
    hope this helps

  • Windows Mobile 6 not syncing with Exchange Server / Error Code: 0x80072F06

    Just got my Dopod 838 pro with Windows Mobile 6 installed. Having this problem when trying to sync with corp. Exchange server:
    The ActiveSync circle on the phone turns yellow/brown, clicking the Error message it says:
    The Security Certificate on the server is invalid, please contact Exchange Server Admin or ISP, to install valid certificate on the server.
    Support / Error Code: 0x80072F06
    That's the problem. My phone doesn't have a Data Link connection problem as I am able to go online with it, also the company's Exchange Server is good, a few days ago I used my Windows Mobile 5 to sync with it without a problem. (but then I lost the phone)
    Can some one help? Thanks.

    Can u help me here?
    I have a windows 6 mobile devices (all) that are having an issue connecting to my exchange server. I am pretty useful with certs but this one is baffling me. I have a windows 2003 sbs server. I recently created a san cer on the server and since then my Windows devices cannot synch. I belive I have setup correctly, or not?? Ther error and the steps are below...
    ERROR ON DEVICE:
    The security certificate on the server is not valid.Contact your exchange server administrator or ISP to install a valid certificate on the server:
    support code: 0x80072f06
    STEPS I USED TO CREATE SAN:
    1. Created certificate using article http://support.microsoft.com/kb/931351/en-us
    I added the following as SN:        MAIL.EXTERNAL.COM     (my external dns record for mail server)
    And added the following for SAN: SERVER01                     (my mail server name )
                                                         SERVER01.INTERNAL.LOCAL  (my mail server fqdn)
    2. Exported Root CA cert and imported to my phone
    3. configured active synch to connect to mail.external.com on 443
    I believe these are the correct steps. I would liked to have been able to export the SAN cert from IIS with private key and install on phone but the webserver template doesnt allow you to export private keys. I also cannot create a dubplicate webserver template to allow the export of the private key as you need enterprise edition of windows 2003 to do this.
    So I am at the end of line I tried exporting the cert without the privtate key and importing it but still keep getting samer error.
    Why of Why does it not like my cert?
    I have just noticed now when I browse to the same address for OWA externally I am getting the error on my browser too even though I have the cert installed on my laptop
    Celtic

  • Windows Server 2008 R2 Backup Fails with error "Parameter is Incorrect"

    When i try to take backup of Windows Server 2008 R2 and Windows Storage server 2008 to External hard drive. It gives error "Parameter is incorrect".
    Am taking full Server backup from server backup utility. Backup includes (System State, Bare metal recovery and 5 local drivers). Full back size is 1.2TB.

    Hi,
    Can you post unedited error event log related to VSS from application log? Are you using windows server backup tool? If yes, please post error event log from "Applications ans Services Logs\Microsoft\Windows\Backup "
    Thanks,
    Umesh.S.K

  • Importing a Hyper-V virtual machine into windows 8 hyper-v fails with a strange error

    Here is the error what i am suffering from, it fails and i dont know what this error is all about
    Saved State Errors
    The following saved state errors were reported... the processor settings for virtual machine....
    can some one help

    Hi,
    Could you offer more information about your error, such the original error message or screenshot, If meeting the Event 3080, you can refer the following related article for
    the further troubleshooting:
    Hyper-V Could Not Initialize - Could Not Create or Access Saved State File
    http://blogs.technet.com/b/rmilne/archive/2014/01/15/hyper-v-could-not-initialize-could-not-create-or-access-saved-state-file.aspx
    Hope 
    this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • WDS capture image on a Windows 2012 R2 server fails with a winload error

    Hello,
    I have been fighting with this problem for days now. I have to install
    30 Win8.1 Pro PC's with  WDS. The WDS service is running on a Win2012 R2
    server. I added the Win 8.1 Pro boot and install images and created a capture image.
    Now when I boot the reference computer I get  a Boot Manager message saying that winload.exe is missing or corrupt. The original boot wim works
    correctly.I removed and added the WDS role a couple of times, I tried the procedure with a 32 bit Win7 boot image, and that worked, But when I added the capture image created from the original Win8.1 boot.wim, that spoiled both capture images.  I tried
    the same thing with a Win2012 R2 Standard server after removing and adding the WDS role again, but the capture image generated the same error as above. .I see that since about mid-April many people has the same problem.Different solutions are suggested, but
    none of them   worked for me.  One of them is to mount and unmount the capture image, that didn't help for me.
    Any help is appreciated.
    Thanks
    Gabor

    Do I understand correctly that if you deploy original wim file to your testPC1 it works all right, but if you deploy an image that you captured on buildPC to testPC1 then you get the winload.exe error ?
     Are you formatting (deleting all the partitions) on testPC1 during the
    deployment of captured image ? Can you check and confirm if the HDD seting for AHCI or IDE (yes, its still around) is the same option on both stations?

Maybe you are looking for

  • How can I go back and forth between Word and FrameMaker

    I have a client who has all their documentation in FrameMaker, but needs to export to MS Word to distribute files for editing by various parties. Once edited, my client needs to bring the updated text back into Frame, ideally without having to re-for

  • Is there a way to combine matrix data?

    If anyone can, please help me. Linear algebra is not my specialty. I am trying to make a function using the BitmapData.hitTest() to see if two sprites on screen are hit. I have got it working for sprites that are direct siblings (ie they are on the r

  • No credit card and cant find the same items anywhere e

    I decided to purchase a zen vision M dock and video cable from the official creative site as i cant find the same items anywhere in a high street shop or anywhere online. I was halted by the fact i don't have a credit card tho i do have debit card, d

  • OPC Server Not going to active state

    When we add a single virtual Analog input channel on a PXI 4351 card the opc sevrer cannot be started by the tag engine. The error message is that it cannot be set to the active state. Removing the single analog input channel solves the problem. We h

  • How to put validations to TextField in Table Componenet

    I am Using Java Server Studio Creator2 update 1(JSF Tech.). I have added textField to Table component. Now Can any one Help me in Putting Custom Validations or even inbuilt validators would also do. Thanks in Advance!!!!!!!!!!!!! Message was edited b