Infos

Sie befinden sich aktuell in den Techblog - Tim Wanierke Blog-Archiven für den folgenden Tag 13.2.2009.

Calendar
Februar 2009
M D M D F S S
« Jan   Mrz »
 1
2345678
9101112131415
16171819202122
232425262728  

Archive für 13.2.2009

HOWTO repair vss writers

When you have a servers which has an error with one ore more vss writers.
You can check if the vsswriters are working properly using the command “vssadmin list writers”.

See also the KB Article : http://support.microsoft.com/kb/940032
See KB Article : http://support.microsoft.com/kb/940184/en if the error  “Error: 0×8000FFFF” occurs.

You can repair these vss writers using the following command:

cd /d %windir%\system32
Net stop vss
Net stop swprv
regsvr32 ole32.dll
regsvr32 oleaut32.dll
regsvr32 vss_ps.dll
vssvc /register
regsvr32 /i swprv.dll
regsvr32 /i eventcls.dll
regsvr32 es.dll
regsvr32 stdprov.dll
regsvr32 vssui.dll
regsvr32 msxml.dll
regsvr32 msxml3.dll
regsvr32 msxml4.dll
vssadmin list writers

|