Restore-Computer
在本機電腦上啟動系統還原。
語法
Restore-Computer
[-RestorePoint] <Int32>
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
Cmdlet 會將 Restore-Computer
本機計算機還原至指定的系統還原點。
Restore-Computer
重新啟動電腦。 還原會在重新啟動作業期間完成。
系統還原點和 Restore-Computer
僅支援用戶端操作系統,例如 Windows 7、Windows Vista 和 Windows XP。
範例
範例 1:還原本機計算機
Restore-Computer -RestorePoint 253
此命令會將本機計算機還原至序號為 253 的還原點。
範例 2:使用確認還原本機計算機
PS> Restore-Computer -RestorePoint 255 -Confirm
Confirm
Are you sure you want to perform this action?
Performing operation "Restore-Computer" .
[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"):
此命令會將本機計算機還原至序號為 255 的還原點。 它會使用 Confirm 參數在實際執行作業之前提示使用者。
範例 3:還原計算機並檢查狀態
Get-ComputerRestorePoint
Restore-Computer -RestorePoint 255
Get-ComputerRestorePoint -LastStatus
這些命令會執行系統還原,然後檢查其狀態。
第一個命令會使用 Get-ComputerRestorePoint
取得本機計算機上的還原點。
第二個命令會將計算機還原到序號為 255 的還原點。
第三個命令會使用 Cmdlet 的 Get-ComputerRestorePoint
LastStatus 參數來檢查還原作業的狀態。 因為 Restore-Computer
會強制重新啟動,因此會在計算機重新啟動之後輸入此命令。
參數
-Confirm
執行 Cmdlet 之前先提示您確認。
類型: | SwitchParameter |
別名: | cf |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-RestorePoint
指定還原點的序號。 若要尋找序號,請使用 Get-ComputerRestorePoint
Cmdlet。 此為必要參數。
類型: | Int32 |
別名: | SequenceNumber, SN, RP |
Position: | 0 |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-WhatIf
顯示執行 Cmdlet 後會發生的情況。 未執行 Cmdlet。
類型: | SwitchParameter |
別名: | wi |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
輸入
None
您無法使用管線將輸入傳送至此 Cmdlet。
輸出
None
此 Cmdlet 不會產生任何輸出。
備註
- 若要在 Windows Vista 和更新版本的 Windows 作業系統上執行
Restore-Computer
命令,請使用 [以系統管理員身分執行] 選項開啟 Windows PowerShell。 - 此 Cmdlet 使用 Windows Management Instrumentation (WMI) SystemRestore 類別。