在本地计算机上创建系统还原点。
语法
Checkpoint-Computer [-Description] <string> [[-RestorePointType] <string>] [<CommonParameters>]
说明
Checkpoint-Computer cmdlet 将在本地计算机上创建系统还原点。此 cmdlet 仅在 Windows Vista 和 Windows XP 上运行。
参数
-Description <string>
指定还原点的描述性名称。此参数是必需的。
是否为必需? |
true |
位置? |
1 |
默认值 |
|
是否接受管道输入? |
false |
是否接受通配符? |
false |
-RestorePointType <string>
指定还原点的类型。默认值为 APPLICATION_INSTALL。
有效值为 APPLICATION_INSTALL、APPLICATION_UNINSTALL、DEVICE_DRIVER_INSTALL、MODIFY_SETTINGS 和 CANCELLED_OPERATION。
是否为必需? |
false |
位置? |
2 |
默认值 |
APPLICATION_INSTALL |
是否接受管道输入? |
false |
是否接受通配符? |
false |
<CommonParameters>
此 cmdlet 支持通用参数:-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer 和 -OutVariable。有关详细信息,请参阅 about_Commonparameters.
输入和输出
输入类型是指可通过管道传递给 cmdlet 的对象的类型。返回类型是指 Cmdlet 所返回对象的类型。
输入 |
None 不能通过管道将对象传递给 Checkpoint-Computer。 |
输出 |
None 此 cmdlet 将不产生任何输出。 |
说明
此 cmdlet 对 BEGIN_SYSTEM_CHANGE 事件使用 SystemRestore 类的 CreateRestorePoint 方法。
示例 1
C:\PS>checkpoint-computer -description "Install MyApp" 说明 ----------- 此命令将创建一个名为“Install MyApp”的系统还原点。它使用默认的 APPLICATION_INSTALL 还原点类型。
示例 2
C:\PS>checkpoint-computer -description "ChangeNetSettings" -RestorePointType MODIFY_SETTINGS 说明 ----------- 此命令将创建一个名为“ChangeNetSettings”的 MODIFY_SETTINGS 系统还原点。
另请参阅