Я ищу способ создать точку восстановления системы с текущей датой и временем, нажав кнопку. Я пробовал искать в Интернете простой способ сделать это, но я еще не нашел его.Как создать точку восстановления системы программно?
Я нашел этот фрагмент кода из: http://msdn.microsoft.com/en-us/library/windows/desktop/aa378847%28v=vs.85%29.aspx, но он находится в VB, а не C#, я попытался немного его преобразовать, но я не думаю, что делаю отличную работу по его переводу.
'CreateRestorePoint Method of the SystemRestore Class
'Creates a restore point. Specifies the beginning and
'the ending of a set of changes so that System Restore
'can create a restore point.This method is the
'scriptable equivalent of the SRSetRestorePoint function.
Set Args = wscript.Arguments
If Args.Count() > 0 Then
RpName = Args.item(0)
Else
RpName = "Vbscript"
End If
Set obj = GetObject("winmgmts:{impersonationLevel=impersonate}!root/default:SystemRestore")
If (obj.CreateRestorePoint(RpName, 0, 100)) = 0 Then
wscript.Echo "Success"
Else
wscript.Echo "Failed"
End If
См. Также этот вопрос: http://stackoverflow.com/questions/32845/creating-system-restore-points-thoughts – M4N