Forum Discussion

gsmith411's avatar
gsmith411
Level 3
12 years ago

Backup Exec 2010 VSS error

I have a file server ( Win2k8 R2 64bit) that I am trying to backup using Backup Exec 2010 R3.  It is not a domain controller. I was receiving VSS error (V-79-100000-11226) and after researching, someone mentioned it may be the external USB Drive.  I unplugged the drive, and the error went away and the backups work fine.  I confirmed it is the USB drive causing the problem. Just having it plugged in causes the backups to fail.  I am not attempting to backup up to the USB Drive, at least not yet.  Eventually, I want to set a duplicate to the external USB to take off site, but for now, just plugging it in causes my backups to fail.

  Running vssadmin list writers without the USB drive plugged in, and all writers are fine.  Plugging in the USB Drive and running the same command, the system writer and the WMI writer failed.  I have tried re-registering the VSS dlls with the below code, but, as long as the USB drive is plugged in, I continue to get those errors.

BTW,  the USB Drive is a Seagate BackupPlus 3tb USB 3.0 Desktop external Hard Drive.

Any help would be greatly appreciated.

Here is the VSS re-register code I ran.

rem FILENAME: FIXVSS08.BAT
rem
 
net stop "System Event Notification Service"
 
net stop "Background Intelligent Transfer Service"
 
net stop "COM+ Event System"
 
net stop "Microsoft Software Shadow Copy Provider"
 
net stop "Volume Shadow Copy"
 
cd /d %windir%\system32
 
net stop vss
 
net stop swprv
 
regsvr32 /s ATL.DLL
 
regsvr32 /s comsvcs.DLL
 
regsvr32 /s credui.DLL
 
regsvr32 /s CRYPTNET.DLL
 
regsvr32 /s CRYPTUI.DLL
 
regsvr32 /s dhcpqec.DLL
 
regsvr32 /s dssenh.DLL
 
regsvr32 /s eapqec.DLL
 
regsvr32 /s esscli.DLL
 
regsvr32 /s FastProx.DLL
 
regsvr32 /s FirewallAPI.DLL
 
regsvr32 /s kmsvc.DLL
 
regsvr32 /s lsmproxy.DLL
 
regsvr32 /s MSCTF.DLL
 
regsvr32 /s msi.DLL
 
regsvr32 /s msxml3.DLL
 
regsvr32 /s ncprov.DLL
 
regsvr32 /s ole32.DLL
 
regsvr32 /s OLEACC.DLL
 
regsvr32 /s OLEAUT32.DLL
 
regsvr32 /s PROPSYS.DLL
 
regsvr32 /s QAgent.DLL
 
regsvr32 /s qagentrt.DLL
 
regsvr32 /s QUtil.DLL
 
regsvr32 /s raschap.DLL
 
regsvr32 /s RASQEC.DLL
 
regsvr32 /s rastls.DLL
 
regsvr32 /s repdrvfs.DLL
 
regsvr32 /s RPCRT4.DLL
 
regsvr32 /s rsaenh.DLL
 
regsvr32 /s SHELL32.DLL
 
regsvr32 /s shsvcs.DLL
 
regsvr32 /s /i swprv.DLL
 
regsvr32 /s tschannel.DLL
 
regsvr32 /s USERENV.DLL
 
regsvr32 /s vss_ps.DLL
 
regsvr32 /s wbemcons.DLL
 
regsvr32 /s wbemcore.DLL
 
regsvr32 /s wbemess.DLL
 
regsvr32 /s wbemsvc.DLL
 
regsvr32 /s WINHTTP.DLL
 
regsvr32 /s WINTRUST.DLL
 
regsvr32 /s wmiprvsd.DLL
 
regsvr32 /s wmisvc.DLL
 
regsvr32 /s wmiutils.DLL
 
regsvr32 /s wuaueng.DLL
 
sfc /SCANFILE=%windir%\system32\catsrv.DLL
 
sfc /SCANFILE=%windir%\system32\catsrvut.DLL
 
sfc /SCANFILE=%windir%\system32\CLBCatQ.DLL
 
net start "COM+ Event System"

  • Yes, I am familiar with the workaround to mount the System Reserved Partition when a VSS unexpected provider error occurs.  With that in mind, you will need to modify step 9 to use another volume; see below.  Sure, when able, please follow procedures A, B, and C with modified step 9.  If any failure occurs, please attach the entire job log for review.  Thank you.

    (9)   C:\>VSSADMIN ADD SHADOWSTORAGE /FOR=Z: /ON=F:  /MaxSize=UNBOUNDED

    (10) C:\>VSSADMIN ADD SHADOWSTORAGE /FOR=G: /ON=G:  /MaxSize=UNBOUNDED

18 Replies