Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Error
VSS Error: 0x80042318 - Failed to Create Volume Snapshot
Description
The This error indicates a problem communicating with Volume Shadow Copy Service (VSS) writers on your system. Please have a look Look in your Windows Event log for VSS error messages that might give more information and check that the VSS service is started.?Solution
Make sure thatthe

  1. Check the VSS service isn't disabled.
  2. Changing the startup type of the VSSservice and rebooting can often resolve issues.

      ...

        1. Right click

      ...

        1. My Computer

      ...

        1. .
        2. Select

      ...

        1. Manage

      ...

        1. .
        2. Select

      ...

        1. Services

      ...

        1.  tree node.
        2. Right click

      ...

        1. Volume Shadow Copy

      ...

        1. .
        2. Select Properties.
        3. Change

      ...

        1. startup type to

      ...

        1. Automatic

      ...



        1. Image Modified

        2. Reboot
           

      Re-register the VSS components

      1. Sometimes, re-registering VSS core components can fix errors. 
        1. Copy the following commands to Notepad

      ...

        1. :
          cd /d %windir%\system32
          net

      ...

        1. stop vss
          net stop swprv
          regsvr32 /s

      ...

        1. ol32.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

      ...

        1. start vss 
        2.  Save the file with a .bat extension. 
        3. Run the .bat file by opening a command prompt and entering the .bat file name.

       

      ...