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.
- @echo off
- :start
- echo Select an option:
- echo //============================================================//
- echo // 1: Back up //
- echo // 2: Update Back up //
- echo // 3: Restore Back up //
- echo // 4: Format Back up Drive //
- echo // 0: Exit //
- echo //============================================================//
- set /p choice= Please select an option.
- se não '%choice%'=='' set choice=%choice:~0,1%
- if '%choice%'=='1' goto Backup
- if '%choice%'=='2' goto UpdateBackup
- if '%choice%'=='3' goto RestoreBackup
- if '%choice%'=='4' goto FormatTarget
- if '%choice%'=='0' goto Exit
- ECHO USE EITHER 1, 2, 3, 4 or 0!
- :: Note - list ERRORLEVELS in decreasing order
- IF ERRORLEVEL 4 GOTO Start
- IF ERRORLEVEL 3 GOTO Start
- IF ERRORLEVEL 2 GOTO Start
- IF ERRORLEVEL 1 GOTO Start
- IF ERRORLEVEL 0 GOTO Start
- :Backup
- robocopy @:\ #:\ /B /E /V /R:1 /W:1 /XD @:\System Volume Information /XF @:\Autorun.inf /XD @:$Recycle.Bin
- pause
- goto start
- :UpdateBackup
- robocopy @:\ #:\ /B /MIR /V /R:1 /W:1 /XD @:\System Volume Information /XF @:\Autorun.inf /XD @:$Recycle.Bin
- pause
- goto start
- :RestoreBackup
- robocopy #:\ @:\ /B /E /V /R:1 /W:1 /XD #:\System Volume Information /XF #:\Autorun.inf /XD #:$Recycle.Bin
- pause
- goto start
- :FormatTarget
- format #: /FS:NTFS /C /Q /L
- pause
- goto start
- :Exit
- 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
Apagar uma opção errada reiniciará o script
O script que faz backup dos meus arquivos.
Este script é minúsculo em apenas 1.54KB em tamanho.
Artigos semelhantes
- Quão afiada teria que ser uma faca para cortar facilmente o antebraço de um humano? Que tipo de faca funcionaria melhor?
- Existe alguma aplicação de chamada gratuita que faça chamadas sem verificação móvel?
- Como fazer uma cópia de segurança do meu iPhone
- É possível restaurar selectivamente os dados do iPhone a partir de uma cópia de segurança do iTunes?