如何在Win7上使用卷影复制和Robocopy?
我想使用 Robocopy 和 Powersell 备份我的系统,但 Robocopy 无法复制打开的文件。 卷影复制似乎是一个解决方案,但我没有找到任何清晰且简单的解释如何使用它。
你有什么想法吗?
我在 Windows 7 x64 Enterprise 上运行。 感谢您的帮助。 弗兰克
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 use it.
Do you have any idea?
I’m running on Windows 7 x64 Enterprise.
Thanks for your help.
Franck
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了在 Windows 7 上执行 VSS 快照,您只需执行“系统还原”即可。之后,打开管理员控制台,输入
vssadmin listshadows
。您正在最近的快照中查找“卷影复制卷”行。复制此内容,然后执行mountvol X: YOUR_VSS_PATH
,您的 VSS 快照将安装在 X: 上。之后,在 X: 上运行 robocopy 就可以了。In order to perform a VSS snapshot on Windows 7, you can simply do a "System Restore". After, open an administrator console, type
vssadmin list shadows
. You are looking for the "Shadow Copy Volume" line in the most recent snapshot. Copy this, and domountvol X: YOUR_VSS_PATH
, and your VSS snap will be mounted on X:. After that, run robocopy on X: and you should be good to go.您可以使用 mklink 命令挂载 VSS 影子。这适用于服务器和工作站。
mklink
是一个原生工具。例如:
更多信息可以在这里找到:http://forensicswiki.org/wiki/Mount_shadow_volumes_on_disk_images
You can mount the VSS shadow using
mklink
command. This Works in Servers and Workstations.mklink
is a native tool.For example:
More information can be found here: http://forensicswiki.org/wiki/Mount_shadow_volumes_on_disk_images