使用 .NET 中的卷影复制服务 (VSS) - 可用的最佳方法/项目?

发布于 2024-10-03 00:32:30 字数 186 浏览 7 评论 0原文

我想向我正在开发的应用程序添加 VSS 支持,唯一可用的良好打包方法似乎是 AlphaVSS,尽管它已经近两年没有积极开发了。是否还有其他我找不到的项目,或者是否有更直接的方法来访问“API”(如果你可以这样称呼它)?

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 other projects out there that I just can't find, or is there a more straightforward method to accessing the "API" (if you can call it that)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久光 2024-10-10 00:32:30

您可以使用 WMI Win32_ShadowCopy 类吗?我没有 C# 示例,但无论如何,在 PowerShell 中使用 WMI 通常会更好:


function global:CREATE-SHADOW ( $Drive ) { 
  (Get-WmiObject -list win32_shadowcopy).Create($Drive,"ClientAccessible") 
}

via: http://www.energizedtech.com/2010/04/powershell-creation-of-a-shado.html

Could you use WMI Win32_ShadowCopy class. I don't have a C# sample, but working with WMI is usually nicer in PowerShell in any case:


function global:CREATE-SHADOW ( $Drive ) { 
  (Get-WmiObject -list win32_shadowcopy).Create($Drive,"ClientAccessible") 
}

via: http://www.energizedtech.com/2010/04/powershell-creation-of-a-shado.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文