Questions tagged [volume-shadow-service]

Volume Shadow Service (VSS), also called Volume Shadow Copy refers to a volume shapshot service built in to Microsoft Windows Operating Systems from XP or greater. Questions concerning the API should use this tag; you may also consider tagging your question Windows and the language of your choice.

97 questions
1
vote
0 answers

Reading the cow Shadow storage directly

How to read only the changed blocks from the shadow storage as illustrated here? http://macriumsoftware.files.wordpress.com/2012/11/reading_data_back.png I want to know if someone can share a sample how to read the cow Shadow storage directly from…
user413990
  • 39
  • 5
1
vote
0 answers

Want example code for reading the VSS snapshot journal

Is there a way to read the VSS snapshot area directly on Windows? Assume that you have created a VSS snapshot; and want to read the snapshot to figure out: - which block was copied (the block reference to its origin) - the copied data (cow / saved…
1
vote
1 answer

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 from win xp (sp 0) -> windows 7. part of the…
ManicQin
  • 159
  • 1
  • 8
1
vote
0 answers

How to implement bare metal recovery for windows server os in c++

I tried to implement bare metal recovery for windows os machine. I thought of implementing it using VolumeShadowService (VSS). Till now I am able to take backup of entire system using vss and backupread and write functions and also completed restore…
1
vote
0 answers

Getting Error code: -2146368511 [0x80110401] on executing Sample VSS Hardware provider setup

Both the solutions mentioned in "VSS Hardware provider" are not helpful. I executed following instructions to install VssSampleProvider Setup (refered from…
ankur
  • 11
  • 3
1
vote
2 answers

Using Volume Shadow Copy Service (VSS) in Delphi

Does anyone have sample code to copy open (in-use and locked by another program) files using Volume Shadow Copy Service (VSS) API? There was an article about this in The Delphi Magazine (September 2005). But that code is no longer available and even…
Vic
  • 935
  • 2
  • 14
  • 21
1
vote
1 answer

Using wmi to get the VSS shadow copy's dos path

vssadmin list shadows show the dos path of every volume copy, in the following form: \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy4 Is there a way to do this using wmi? I'ved looked through Win32_ShadowCopy and experimented with it a bit, but…
simonzack
  • 19,729
  • 13
  • 73
  • 118
1
vote
0 answers

Use Volume Shadow Copy from Delphi with WMI Class Win32_ShadowCopy

Does anyone have any pointers to using the WMI class Win32_Shadowcopy to create a temporary ("Backup") shanshot of a volume, in Delphi? I have seen a generated unit…
1
vote
1 answer

Persistent Shadow Copy in XP SP2?

I'm wondering if XP supports persistent shadow copying like Windows Vista/7 do. I read the wikipedia article about Shadow Copy and it had this paragraph (emphasis mine): The creation of persistent snapshots (multiple snapshots which remain …
beardog
  • 201
  • 1
  • 2
  • 9
1
vote
2 answers

VSS Hardware provider

I've been trying to follow the instructions to install the example VSS hardware provider that comes with the Windows SDK. Unfortunately COM refuses to register the DLL, giving the following output: Unregistering the existing application... - Create…
fjames
  • 116
  • 1
  • 7
1
vote
1 answer

How to programmatically read items from a VSS backup drive?

I use VSS to backup to a backup drive. I'd like attach that drive on another machine and list all the backups on it and then list all the items within a particular backup. I know you can do it at the command prompt with the wbadmin tool using…
emertechie
  • 3,607
  • 2
  • 22
  • 22
1
vote
2 answers

Windows VSS service

I am a newbie and I am working on a driver that tracks creation/write/modification on files. Now I have been told to work on Volume snapshot. I have seen the code of VSS that comes with Windows SDK. But I have been informed to work on VSS at the…
0
votes
1 answer

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, and lacking enough cleanup code it's here:…
socrtwo
  • 122
  • 1
  • 12
0
votes
0 answers

How to Exclude Files and Folders from Volume Shadow Copy (VSS) Backups

I've been using Volume Shadow Copy (VSS) to create backups of my files and folders. However, I've encountered a situation : I need to exclude specific files and folders from Microsoft built-in Volume shadow Copy to save storage space and time. Since…
0
votes
0 answers

SqlServerWriter failing on running two vss restore in parallel

I'm trying to perform VSS restore of two different databases on the same host. Here is documentation of SQL on how the restore process works To perform VSS operations, I'm using the VSS requestor sample code provided by Microsoft When I do restore…
Kanak
  • 13
  • 2