QNA > C > Conoscete Qualche Applicazione Che Fa Un Backup Su Windows?

Conoscete qualche applicazione che fa un backup su Windows?

Sì.
Robocopy.

Robocopy è uno strumento fornito con windows vista e successivi.

Puoi usarlo nel prompt dei comandi o usare questo script batch.

Per fare questo script apri il blocco note.
Incolla l'intero contenuto in esso.
Nominalo come vuoi ma aggiungi l'estensione .BAT at the end.

Then you can back up an entire hard drive, update the backup(this will also erase files that have been erased), restore the backup to a new drive, format the backup drive or exit.

  1. @echo off 
  2. :start 
  3. echo Select an option: 
  4. echo //============================================================// 
  5. echo // 1: Back up // 
  6. echo // 2: Update Back up // 
  7. echo // 3: Restore Back up // 
  8. echo // 4: Format Back up Drive // 
  9. echo // 0: Exit // 
  10. echo //============================================================// 
  11. set /p choice= Please select an option. 
  12. if not '%choice%'=='' set choice=%choice:~0,1% 
  13. if '%choice%'=='1' goto Backup 
  14. if '%choice%'=='2' goto UpdateBackup 
  15. if '%choice%'=='3' goto RestoreBackup 
  16. if '%choice%'=='4' goto FormatTarget 
  17. if '%choice%'=='0' goto Exit 
  18.  
  19. ECHO USE EITHER 1, 2, 3, 4 or 0! 
  20. :: Note - list ERRORLEVELS in decreasing order 
  21. IF ERRORLEVEL 4 GOTO Start 
  22. IF ERRORLEVEL 3 GOTO Start 
  23. IF ERRORLEVEL 2 GOTO Start 
  24. IF ERRORLEVEL 1 GOTO Start 
  25. IF ERRORLEVEL 0 GOTO Start 
  26.  
  27. :Backup 
  28. robocopy @:\ #:\ /B /E /V /R:1 /W:1 /XD @:\System Volume Information /XF @:\Autorun.inf /XD @:$Recycle.Bin 
  29. pause 
  30. goto start 
  31.  
  32. :UpdateBackup 
  33. robocopy @:\ #:\ /B /MIR /V /R:1 /W:1 /XD @:\System Volume Information /XF @:\Autorun.inf /XD @:$Recycle.Bin 
  34. pause 
  35. goto start 
  36.  
  37. :RestoreBackup 
  38. robocopy #:\ @:\ /B /E /V /R:1 /W:1 /XD #:\System Volume Information /XF #:\Autorun.inf /XD #:$Recycle.Bin 
  39. pause 
  40. goto start 
  41.  
  42. :FormatTarget 
  43. format #: /FS:NTFS /C /Q /L 
  44. pause 
  45. goto start 
  46.  
  47. :Exit 
  48. Exit 

The only things that need changing are the drive letter designations

@ is the drive you want to back up
# is the back up drive drive

This script ignores the autorun.inf file(if present) the System Volume Information folder and its sub folder/files & the folder and its sub folder/files.

The format option will perform a quick format on the drive in NTFS file system with compression enabled, this will slow the back up down but will mean the most possible space is save

Script started

main-qimg-559171b260ccf7f724fd56623a7a965a

Sbagliando un'opzione si riavvia lo script

main-qimg-14a25f56621d111b1040c61dac3244d0

Lo script che fa il backup dei miei file.

main-qimg-1584eb61fe2393fcb16f3de9c5edd8ce

Questo script è molto piccolo, solo 1.54KB di dimensione.

Di Dallis

Quali dati Internet prepagati sono disponibili in California? :: Quali industrie hanno i margini più alti?
Link utili