Tagged Questions

3
votes
2answers
2k views

Volume Shadow Copy (VSS)

Can anyone clarify an issue? I'm using the VSS API (C++ using VSS2008 and the latest SDK running on XP SP3) in a home-brew backup utility*. THe VSS snapshot operations work fine for folder that have ...
1
vote
0answers
175 views

volume shadow copy vs data protection manager

trying to implement a VSS backup solution similar to what is described here: Volume Shadow Copy (VSS) there is a new offering called data protection manager: ...
1
vote
2answers
1k views

Shadow Copying, and mixed C# and C++ DLLs loading from arbitrary folders

I have a VS 2005 C# project that uses a special Plugin folder to load extra DLLs (for use as nodes in an asset conversion process). I have a mixture of C# and C++ DLLs in this folder. The issue I ...
0
votes
3answers
138 views

Use two different versions of a .lib file in one C++ project?

I'm working on a Volume Shadow Copy program. I have just found out that I need to use a different set of .h files (vsbackup.h) and associated .lib files (vssapi.lib) to compile the project for Windows ...
0
votes
1answer
188 views

Getting a runtime error “procedure entry not found in vssapi.dll” when trying to run Volume Shadow Copy

The code compiles fine and I have included the vssapi.lib in the additional dependencies for the linker. I get this error saying "CreatevssbackupcomponentsInternal procedure entry point could not be ...
0
votes
1answer
192 views

Unable to take differential backup using SQL Server VSS Writer

I have been trying to develop a tool to do backup/restore of MS SQL Server using SQL Server VSS Writer. I can not get the differntial backup working! I am just curious as to whether anyone ever made ...
0
votes
2answers
2k views

Converting a C++ .exe project to a dll

Microsoft provides the source code of vshadow to manipulate VSS (Volume Shadow Service [shadow copy]), and I've modified it a bit but I want to make it into a dll so I can use it in my C# projects. I ...