在 cmd 中恢复 Windows 7?

在 cmd 中恢复 Windows 7?

由于系统冻结,我需要使用 cmd 将系统恢复到早期状态,但我只使用 rstrui.exe 找到它,我需要从 cmd 本身执行所有操作。

有什么办法可以做到这一点吗?

答案1

以下步骤应该可以完成您想要的操作:

  • 在 cmd 中powershell输入启动 PowerShell
  • 当 PowerShell 启动时,键入start-process powershell -verb runas以提升其权限。
  • 用于get-computerrestorepoint获取可用的还原点。记住SequenceNumber它返回
  • 用于Restore-Computer -restorepoint <sequencenumber>开始恢复。

注意:也许您想添加-WhatIf到您的Restore-Computer呼叫中,只是为了确定它的作用。

更多信息:https://technet.microsoft.com/en-us/library/hh849845.aspx

相关内容