Windows卷影复制错误:2155348129

开发VSS编写器应用程序:
在备份期间看到此错误,由 Windows备份工具启动,
是否有来自Microsoft的2155348129定义的错误代码

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’

当VSSwriter服务(我的应用程序)停止时,不会发生这种情况.

任何帮助表示赞赏.在TechNet上找不到任何有用的东西.

Hackish解决方法
有趣的是,备份工作是“Windows分区处于活动状态”.当然,这会使系统在重启时无法启动

TechNet博客

十进制2155348129 is 0x807800A1 in hex.

快速在互联网上搜索此值可以带我到这个博客

> Microsoft TechNet“filecab”博客,Jose Barreto,2009-09-16,Diagnosing Failures in Windows Server Backup – Part 1 (VSS/SPP Errors)(存档here.)

这是一个HRESULT

错误代码是特殊的type called an HRESULT.

即它是与VSS相关的HRESULT

TechNet有一个列出我们特定HRESULT值的表:

> TechNet:Troubleshoot VSS issues that occur with Windows Server Backup (WBADMIN) in Windows Server 2008 and Windows Server 2008 R2

> HRESULT:2155348129
> HRESULT(十六进制):0x807800A1
>错误消息:卷影复制服务操作失败.请查看“VSS”和“SPP”应用程序事件日志以获取更多信息.

注意:VSS是卷影复制服务的缩写. SPP是Shared Protection Point的缩写.他们登录常规Windows应用程序事件日志.他们使用VSS和SPP作为事件源标识符.

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...