Question

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.

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

Was it helpful?

Solution

TechNet Blog

Decimal 2155348129 is 0x807800A1 in hex.

Quickly searching the Internet for this value takes me to this blog:

It's an HRESULT

This error code is of a special type called an HRESULT.

Namely it's a VSS related HRESULT

And TechNet has a table that lists our specific HRESULT value:

Note: VSS is short for Volume Shadow Copy Service. SPP is short for Shared Protection Point. They log into the regular Windows application event log. And they use VSS and SPP as their event-Source-identifier.

OTHER TIPS

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

I had a similar problem with VSS errors vs a SBS backup.

Wasn't low disk space in my case

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 causing VSS issues for Server backup but this was not the case.

Check VSS writer status

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

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 base:

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

I had a SQL server installed. With too many databases. When I deleted some databases the error went away and the backup could continue as normal.

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

Cause was SharePoint VSS writer

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 searches later I was all good.

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

Underlying cause was SharePoint Service Pack

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. And after that you should be able to re-run vssadmin list writers and see all errors are cleared.

Cheers Kactus

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top