Re: Application Problem on Windows 2003 Server



I've got the problem Solved from
http://groups-beta.google.com/group/microsoft.public.dotnet.general/browse_thread/thread/2eacded5e158755d/cb6f2761814a5622?hl=it#cb6f2761814a5622).

I used these flags when calling VSS:
(int)(VSSFlags.VSSFLAG_FORCEDIRYES | VSSFlags.VSSFLAG_RECURSYES)
which I know now they are the problem...

These are the right ones:
(int)VSSFlags.VSSFLAG_REPREPLACE + (int)VSSFlags.VSSFLAG_FORCEDIRNO

Now the application works as usual.

If anybody finds the same problem...
;)

.