Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from this space and version 7

...

Problem 

This error is shown when a VSS provider blocks (or vetoes) the creation of the VSS snapshot. This may be caused by

  • Installing a new 3rd party VSS provider
  • An existing provider becoming corrupted

Solution
Re-register the VSS components
Copy and paste the following lines into a DOS batch (.bat) file and execute:
cd /d %windir%\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
a snapshot and can be due to:
 

  • Installing software which installs its own VSS provider,
  • Existing VSS provider component has become corrupted.

 

Panel
titleSolution - Reregister the VSS components
  1. From the main menu, select Other Tasks > Fix VSS Problems

    Image Added


  2. The Fix VSS Problems dialog is shown, click OK to reregister the VSS components.

    Image Added
Panel
titleIncrease Shadow Storage

Additionally, increasing the size of shadow storage on the drive that's being imaged may be required.

 

  1. Open a command prompt with elevated privileges

  2. Type the following command:

    Code Block
    languagetext
    themeFadeToGrey
    vssadmin Resize ShadowStorage /For=c: /On=c: /Maxsize=10%


    Replace 'C:' with the correct drive. You can use more or less than 10%, but 10% is a good default. 

 


 

...