Windows – way to use Volume Shadow Copy on Windows 8

backupvolume-shadow-copywindows 8

I can't find the Previous Versions tab that used to be available, and I see that there is now the new File History thing, but it only appears to back up libraries. But I want it for all of my folders. Is there any way to do this on Windows 8?

Volume Shadow Copy could be hit-or-miss, but if you allocated a lot of space to it (as I did), it seemed to be quite reliable.

Best Answer

I could be going out on a limb here but I think shadow copy is alive and well! Microsoft removed all the GUI's that's all.

In power shell:

(Get-WmiObject -list win32_shadowcopy).Create("C:\","ClientAccessible")

Now check with

vssadmin.exe list shadows #You can also download the shadowexplorer GUI as well

mount what you see after "Shadow Copy Volume:"

mklink /D C:\myshadowcopy <here>\

Note: you need to add a trailing slash after the address as shown, took me forever to figure it.

Whats even more interesting is vssadmin list shadows shows Attributes: Persistent and every thing on the internet makes out you can only make volatile shadow copies?? Tell me if I'm interpreting this wrong folks!