Disable-ComputerRestore 不会关闭系统保护
我正在以编程方式尝试在 Windows 7 中启用/禁用系统还原。我已启用系统还原工作“Enable-ComputerRestore”,但禁用给我带来了问题。
Disable-ComputerRestore -drive "C:\"
没有将我的 C: 驱动器设置为“关闭系统保护”。它将其设置为“仅恢复文件的先前版本”。任何人都知道为什么会发生这种情况?
I'm programmatically trying to enable/disable System Restore in Windows 7. I have enable system restore working "Enable-ComputerRestore", but disable is giving me issues.
Disable-ComputerRestore -drive "C:\"
doesn't set my C: drive to "Turn off system protection". It sets it to "Only restore previous versions of files" instead. Anyone have a clue as to why this could be happening?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需以管理员身份在本地(无需远程)执行此操作:
命令
注意,您必须关闭系统属性windo并重新打开它才能看到结果。
You just have to do it localy (no remote) as administrator :
The command
Be careful, you have to close the system properties windo and reopen it to see the result.
我正在使用 WMI 和以下改编自此处的 C# 代码来解决此问题。
I'm solving this using WMI and the following C# code adapted from here.