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.
- @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.
- if not '%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
Sbagliando un'opzione si riavvia lo script
Lo script che fa il backup dei miei file.
Questo script è molto piccolo, solo 1.54KB di dimensione.
Articoli simili
- Conoscete qualche videogioco NON ADDITIVO, cioè un videogioco che posso facilmente mettere giù quando voglio studiare?
- Dovrei comprare un Samsung Galaxy A51? Conoscete qualche telefono simile con un valore SAR più basso?
- Conoscete un gioco che sia un survival open world realistico? (Senza trama o almeno senza l'obbligo di seguirla)
- Qual è la differenza tra Windows 10, Windows 10 KN, Windows 10 N e Windows 10 Single Language?