My server running Server 2003 R2 has been reporting multiple 12292 and 10 VSS errors when the UniTrends agent calls to the Shadow Volume Provider for a VSS Snapshot. The server has the latest updates including SP2.
Thus far I have: • Checked vss writers using the vssadmin list writers command : All writers were stable with no errors • Checked providers using the vssadmin list providers command: Only the Microsoft Software Shadow Copy Provider appears • Tried to access C:\ properties > Shadow Copies but the window froze. I rebooted the server and was able to access it. • Verified that the HKLM\SYSTEM\CurrentControlSet\Services\swprv parameter wasn't missing
Here is a copy of the events:
Event Type: Error
Event Source: VSS
Event Category: None
Event ID: 12292
Date: 10/17/2015
Time: 12:11:08 AM
User: N/A
Description:
Volume Shadow Copy Service error: Error creating the Shadow Copy Provider COM class with CLSID {65ee1dba-8ff4-4a58-ac1c-3470ee2f376a} [0x80080005].
Event Type: Error
Event Source: VSS
Event Category: None
Event ID: 10
Date: 10/17/2015
Time: 12:11:08 AM
User: N/A
Description:
Volume Shadow Copy Service information: The COM Server with CLSID {65ee1dba-8ff4-4a58-ac1c-3470ee2f376a} and name SW_PROV cannot be started. Most likely the CPU is under heavy load. [0x80080005]
The only other step I haven't tried was reregistering the VSS dlls. I am in the process of trying that. Do you recommend any other additional steps to diagnose and resolve the root issue? Thank you for your assistance.
Re-register the DLLs for VSS:
cd /d C:\Windows\system32
net stop vss
net stop swprv
regsvr32 /s ole32.dll
regsvr32 /s oleaut32.dll
regsvr32 /s vss_ps.dll
vssvc /register
regsvr32 /s /i swprv.dll
regsvr32 /s /i eventcls.dll
regsvr32 /s es.dll
regsvr32 /s stdprov.dll
regsvr32 /s vssui.dll
regsvr32 /s msxml.dll
regsvr32 /s msxml3.dll
regsvr32 /s msxml4.dll
vssvc /register
net start swprv
net start vss
Source: You answered your own question on the TechNet forums - just making sure the answer is updated here as well, in case you don't come back:
Other ways to debug the problem from Veritas Article ID 000009160
Verify the Volume Shadow Copy and Microsoft Shadow Copy component services are set to either manual or automatic and can be started.
Open the DCOM configuration tool by running "DCOMCNFG" at a run prompt and verify Microsoft Shadow Copy Component is listed under DCOM Config, if not listed run the following to register the the necessary dll :
"regsvr32 /i%windir%system32swprv.dll"
Check on which Server the Snapshot Error is occurring from the Job Log. Then on the same server open Command Prompt and check the VSS Writers Status and Providers with the following commands:
vssadmin list writers - all writers should report "Stable - No Error"
vssadmin list providers - should report Microsoft VSS if no other Hardware Snapshot Provider is being used.
If the error is being generated on a Windows Server 2003/2003 R2 machine, please install Microsoft Patch KB 940349 after downloading it from the following link:
support.microsoft.com/kb/940349
User contributions licensed under CC BY-SA 3.0