Developing a VSS writer app: see this error during backup, initiated by windows backup tool, is there defined error codes for 2155348129 from Microsoft?

"The backup operation that started at '‎2010‎-‎07‎-‎20T02:54:19.354000000Z' 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 '2155348129'"

this does not happen when VSSwriter service (my application) is stopped.

any help is appreciated. Nothing useful found on technet.

hack: interestingly the back up works is when "windows partition is made active". Of course this leaves the system non-boot-able upon restart

link|improve this question

This belongs on superuser. Not development related. – Adam Crossland Jul 20 '10 at 14:22
no, this is related to application development and not just system administration. There is a component called VSS writer implemented using VSS API. – maruti Jul 20 '10 at 14:26
Then you need to rewrite your question as "I'm developing a VSS writer component, but when I attempt to do a backup using it, I get ..." – Roger Lipscombe Jul 20 '10 at 15:19
feedback

5 Answers

up vote 1 down vote accepted

Decimal 2155348129 is 0x807800A1 in hex. Quickly searching the Internet for this value takes me to http://blogs.technet.com/b/filecab/archive/2009/09/16/diagnosing-failures-in-windows-server-backup-part-1-vss-spp-errors.aspx, and the message "A Volume Shadow Copy Service operation failed. Please check "VSS" and "SPP" application event logs for more information."

link|improve this answer
social.technet.microsoft.com/Forums/en-US/winserverfiles/thread/… this has some recommendation to make windows partition active, but that makes OS not boot-able after restart. Is this a bug with Windows? – maruti Jul 21 '10 at 8:19
feedback

I had a similar problem with VSS errors vs a SBS backup. Dell Pro Support (very good) discounted the issue being with the HDD configuration which is referred to all over the www. They did say to watch out for HDDs that are very low on space casuing VSS issues for Server backup but this was not the case.

My Fix: Run 'vssadmin list writers' and see if they have stalled as part of the backup. A reboot or two should set these back to normal. Try a backup now. Check to see if any Sharepoint updates are causing the issue. Run the Sharepoint configuration wizard from the start menu (Next Next Finish), reboot and rerun the backup.

Hope this helps someone else out there - let me know if you need any more info.

www.mtechnical.co.uk

link|improve this answer
feedback

I had this problem on my W Server 2008 R2. I finaly found that a virtual server instance was running on my hyper-v server. Apparently there is a bug that cannot handle parallellism of backups of the v-server and the real server.

I believe I read that there is a fix for this in the knowledge space http://support.microsoft.com/kb/958184

When shutting down the (not important) virtual machine that was running, the issue was resolved

link|improve this answer
feedback

Sharepoint Foundation is causing the issue. By running the "Sharepoint 2010 Products Configuration Wizard", it will fix the backup issue.

link|improve this answer
feedback

The answer by mtechnical put me on the right track, sorry don't have enough rep to vote you up.

Basically "vssadmin list writers" allowed me me to see that "SPSearch4 VSS Writer" was holding everything up with an "inconsistent shadow copy" error and a few quick google searchs later I was all good.

Hopefully that helps you get to where you need to be.

In case anyone else gets here due to backup failing with SBS 2011 even on a clean install with all patches, the cause is due to the sharepoint server service pack. To resolve run the "Sharepoint 2010 Products Configuration Wizard" after that you should be able to re run vssadmin and see all errors are cleared.

Cheers Kactus

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.