Wiederherstellungspunkt via Script/Batch erstellen

JimmyJumbo

Cadet 4th Year
Registriert
Apr. 2011
Beiträge
68
Hallo liebe CB-Gemeinde :)

Ich möchte folgendes Umsetzten und kommen irgendwie nicht auf die Lösung...

Ich möchte ein VB Script oder eine Batch die mir einen Wiederherstellungspunkt mit einem Klick erstellt. Der Wiederherstellungspunkt soll einen von mir fest definierten Namen haben. Und das ganze soll vom Stick also portable laufen...

Hat jemand schon sowas erstellt? Oder geht das gar nicht?
 
Google Treffer #2

Under WinXP the creation of restore points and the restore function itself were in the same place. Under Windows 7 you have a couple of methods:
- Control Panel / System / System protection
- Through the script below.

To do it with a script, save the code below as ManualRestorePoint.vbs, then double-click it.

'------------------------------------------------------
'Create an instant System Restore Point under Windows 7
'------------------------------------------------------
If WScript.Arguments.Count = 0 Then
Set oShell = CreateObject("Shell.Application")
oShell.ShellExecute "wscript.exe", """" _
& WScript.ScriptFullName & """ Run", , "runas", 1
Else
Set oWshShell = WScript.CreateObject("WScript.Shell")
oWshShell.Popup "Creating a SystemRestore point. Please wait.", _
2, "System Restore", 0
swinmgmts = "winmgmts:\\.\root\default:Systemrestore"
GetObject(swinmgmts).CreateRestorePoint _
"Manual Restore Point", 0, 100
MsgBox "System Restore Point created", 0, "System Restore"
End If
_________________________
If this was helpful, please vote by clicking the green triangle. If it solves the issue, click "Propose as Answer". Thanks.

http://answers.microsoft.com/en-us/...indows-7/740f0902-1b13-4a0a-b428-ee58a9233e61
 
Bei dem Thema bin ich auch mal eingestiegen.
Danke, LieberNetterFlo, für den Tipp!
Wen's interessiert: Weiter unten (Seite 2) in dem verlinkten Thread ist eine VBS-Variante mit einer Abfrage nach der Bezeichnung für den Wiederherstellungspunkt dokumentiert.
 
Hab den Thread ganz vergessen :-P

Hat wunderbar geklappt, vielen Dank :)
hatte schon ein paar Scrips ergooglt und dachte das hier jemand sowas schon selber gemacht hat....


Kann also geschlossen werden :)
 
Zurück
Oben