Casa > C > Conhece Alguma Aplicação Que Faça Uma Cópia De Segurança No Windows?

Conhece alguma aplicação que faça uma cópia de segurança no Windows?

Sim.
Robocopy.

Robocopy é uma ferramenta fornecida com o windows vista e mais recente.

P>Pode usá-la no prompt de comando ou usar este script batch.

>p>Para fazer este script abrir o bloco de notas.
Colar todo o conteúdo nele.
Diga-lhe o nome que quiser mas adicione a extensão .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. se não '%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-559171b260ccf7f7f724fd56623a7a965a

Apagar uma opção errada reiniciará o script

main-qimg-14a25f56621d111b1040c61dac3244d0

O script que faz backup dos meus arquivos.

main-qimg-1584eb61fe2393fcb16f3de9c5edd8ce

Este script é minúsculo em apenas 1.54KB em tamanho.

De Harneen Mcphearson

Quais são os melhores blogs ou websites para análise da bolsa de valores indiana? :: Qual site tem o melhor serviço de consultoria de negociação de opções?