Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
314 views

Using Volume Shadow Copy Service (VSS) from .NET - best method/project available?

I'd like to add VSS support to an application I'm developing and the only good packaged method available seems to be AlphaVSS, though it hasn't been actively developed in almost two years. Are there ...
4
votes
1answer
548 views

Volume Shadow Copy in C++

I'm developing an application which will need to copy files that are locked. I intend on using the Volume Shadow Copy service in Windows XP+ but I'm running into a problem with the implementation. I ...
3
votes
3answers
248 views

How to list all the modified files in a shadow-volume?

When a Restore Point is created, Windows starts monitoring the volume and any changes are recorded in a proprietory diff file inside System Volume Information folder. Thorough VSS-SDK api, we can ...
2
votes
1answer
425 views

How to use volume shadow copy using C# in vs2008

I'd like to make a C# application that uses Volume Shadow Copy Service for backup/restore. How do I access the VSS API from C#?
2
votes
6answers
257 views

C++ DLL which can inform a calling program about its progress

My boss wants me to write a DLL in C++ (MSVC++2010) which can perform a Volume Shadow Copy which he can call from VB6 (or at a later point other languages) and which can give status updates back while ...
2
votes
1answer
218 views

vss intializefor backup fails with return code E_UNEXPECTED

#include "vss.h" #include "vswriter.h" #include <VsBackup.h> #include <stdio.h> #define CHECK_PRINT(result) printf("%s\n",result==S_OK?"S_OK":"error") int main(int argc, char* argv[]) { ...
1
vote
0answers
85 views

Can the Volume Shadow Copy service be used in Windows 7 by a non-administrator

I'm trying to use the Volume Shadow Copy service on Windows 7, and have had a look at the MS vshadow code and AlphaVSS. These appear to provide enough detail to do what I need, but I can't make ...
1
vote
1answer
87 views

Backup Files in use by another Process

My application currently uses a third party API that has a bug forcing me to build it in 32bit. Unfortunately this conflicts with Window's Volume Shadow Copy as this apparently must be run in 64bit to ...
1
vote
1answer
81 views

Copying files in use with Ruby

I need to copy some files that are in use by windows with a ruby script. The OS will either be Windows XP or Windows 7 both 32-bit. Can anyone point me to some information on using Volume Shadow copy ...
1
vote
1answer
97 views

How to create a system restore point?

Installing paint.net, I found a string Creating system restore point... I guess it is creating a restore point for Volume Shadow Service. -Isn't it? I'm not sure. If I'm right, how do I do this in ...
1
vote
1answer
397 views

Why do I get “The procedure entry point CreateVssBackupComponentsInternal could not be located in the dynamic link library VSSAPI.DLL.”

Hello everybody let me give you the background first: I'm working on a project that is build with vs2005 on a winxp sp3 with the windows sdk 7.0 and most important the hotfix, that is targeted to work ...
1
vote
5answers
8k views

Windows Volume shadow copy error: 2155348129

Developing a VSS writer app: see this error during backup, initiated by windows backup tool, is there defined error codes for 2155348129 from Microsoft? "The backup operation that started at ...
1
vote
1answer
319 views

Using Volume Shadow Copy Service OK for backing up SQL Server Compact?

Would one expect a backup of a SQL Server Compact database file created with Volume Shadow Copy Service expected to be consistent? I know the big SQL Server has a VSS writer to ensure consistency. ...
1
vote
3answers
712 views

List of well known VSS Writer GUIDs

Is there a consolidated list of GUIDs for well known VSS writers available somewhere? At least the Microsoft ones like System State, Exchange, SQL, Sharepoint etc.
1
vote
1answer
721 views

Writing a volume shadow service writer in C#

Has anyone done this? I have found the AlphaVSS project on Codeplex, but is stops short of providing a way to implement a writer.
0
votes
0answers
36 views

How to use Volume Shadows Copy and Robocopy on Win7?

I’d like to backup my system with Robocopy and Powersell but Robocopy is not able to copy opened files. Volume Shadows Copy seems a solution but I don’t find any clear and simple explanation how to ...
0
votes
2answers
74 views

VB.Net: How To Display Previous Shadow Copy Versions of File Allowing User to Choose One

I'm writing an Excel file recovery program with VB.Net that tries to be a convenient place to gather and access Microsoft's recommended methods. If your interested in my probably kludgy, error filled, ...
0
votes
1answer
149 views

Microsoft VSHADOW.EXE shadow copies contain locked files?

I've been writing a backup program using VSS and started out with VSHADOW.EXE from the Windows SDK 6.1 Samples. It generally works, but I was astonished to see that certain files are still locked ...
0
votes
1answer
68 views

VSS in C# NET DirectoryCopy Function

I am writing a class (based on a class library) that creates a RAMDisk, and every X minutes I need to backup the contents of the RAMDisk to a physical location due to volatility. It was suggested to ...
0
votes
0answers
100 views

Using Volume Shadow Copy API together with System Restore API

I have two questions on the interoperability of these two APIs ... Is it correct that every Restore Point creates exactly one Shadow Copy (per enabled volume), but a manually created Shadow Copy is ...
0
votes
0answers
170 views

Hyper-V Backup with diskshadow - when to call “end backup”?

I am implementing a backup of Hyper V VMs using diskshadow based on Windows VSS (Volume Shadow Copy Service). The implementation is pretty much as described in DiskShadow / Xcopy BACKUP of Hyper-V, ...
0
votes
1answer
191 views

How can i call functions of an abstract base class in C++?

I am using VSS API and using this abstract base class CVSSWriter.I want to call its functions but I can't make its object. How should I inherit it because its a class defined in VSWriter.h Here is ...
0
votes
1answer
73 views

Can I use the VSS ASR writer to create a bootable virtual disk image?

I'm researching the way to create a .VHD file that would be bootable in Hyper-V. Can I use the VSS ASR writer that's included in Windows 7 and Win 2k8 to do this?
0
votes
0answers
92 views

IVssBackupComponents::AddToSnapshotSet

When I use IVssBackupComponents::AddToSnapshotSet method to add a component into snapshotset, it just failed with "VSS_E_NESTED_VOLUME_LIMIT 0x8004232CL". I have got the description about this error ...
0
votes
1answer
207 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
41 views

Backup of Exchange Server 2003,2007 using VSS API's

Can Exchange Server 2003 and 2007 be backup up using VSS API's that are provided for exchange 2010? Thanks
0
votes
1answer
110 views

Building a Volume Shadow Service app for release

How should an application that uses the Volume Shadow Copy service be built for release? I've been building and testing in Windows 7 and everything looks good so I built the app to test in Windows XP ...
0
votes
2answers
325 views

Windows VSS (Volume Shadow Copy) in C++

I need some help with getting VSS to work in C++. My basic aim is to scan a folder for changed files (by modified date) and then back them up to another device using VSS. The documentation is unclear ...
0
votes
1answer
218 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
1answer
174 views

Shadow copy to clone system volume on Windows XP

I am looking for a program that uses shadow copy to copy the contents of a Windows XP system volume that is running. I.e. I want to clone the system volume with the following snags: (1) I want to be ...
0
votes
1answer
563 views

Is there an open source alternative to Windows Volume Shadow Copy [closed]

Is there an open source alternative to Windows Volume Shadow Copy? I need to keep previous versions of files in a directory automatically without having to use a check in / check out process or a ...
0
votes
1answer
164 views

Book on Volume Shadow Copy Service API

I'm having trouble finding books on the Windows Volume Shadow Copy Service. Can anyone point me to a good book on the subject. I'm looking at the API from the point of view to write a VSS requestor.