Rob van der Woude's Scripting Pages
Powered by GeSHi

Source code for sysbkup.bat

(view source code of sysbkup.bat as plain text)

  1. @ECHO OFF
  2. :: This batch file will run and verify an unattended SystemState Backup.
  3. :: The backup file name will be this batch file's name, followed by an
  4. :: underscore, then the computername, and finally the ".bkf" extension.
  5. :: The backup file will be saved in the directory where this batch file
  6. :: is located.
  7. :: Witten by Rob van der Woude
  8. :: http://www.robvanderwoude.com
  9.  
  10. START /WAIT NTBACKUP Backup SystemState /J "%~n0 %ComputerName%" /F "%~dpn0_%ComputerName%.bkf" /V:yes /R:no /L:s
  11.  

page last modified: 2024-04-16; loaded in 0.0171 seconds