Server 2008 System State Backups - Solved

Soldato
Joined
18 Oct 2002
Posts
21,756
Location
Nordschleife
OMG why did MS remove ntbackup? :mad:

So we now have a 2008 DC and I need to backup the system state - Great I have found the command for that

PHP:
wbadmin start systemstatebackup -backuptarget:e: -quiet

But I only need 1 version of it so how the hell do I clean off the old backup files?

Tried:

PHP:
wbadmin delete systemstatebackup –deleteOldest
wbadmin delete systemstatebackup -backuptarget:e: –deleteOldest

Both fail? What am I doing wrong?
 
Yeah found that now and I think I must have type something in wrong to begind with - Just doing a couple of backups and will test the command again

PHP:
wbadmin delete systemstatebackup -backupTarget:e: -deleteOldest

The only difference i have noticed from the command you wrote and the example listed on the MS site is the colon after the drive letter.
 
Restoring System State

Again this isnt easy, probably as its just different way than we have all used.

PHP:
wbadmin get version -backupTarget:e:

PHP:
wbadmin start systemstatereovery -version:01/01/2009-17:00 -backupTarget:e:
 
Back
Top Bottom