Script per eseguire il backup in Windows, di una cartella locale su cartella remota.
Salvare lo script in un file con estensione .cmd per esempio backup.cmd
Da mettere magari in esecuzione allo spengimento del pc... o anche no!
@echo off
@net use k: \\<ip_nas>\<cartella_backup> <password> /user:<utente>
cls
set bkdir=k:\<cartella_destinazioneremota_backup>
set tobackup="path:\cartella da backuppare"
echo -------------------------------------------------------------
echo.
echo Chiudere i vari programmi che usano la cartella
echo.
echo -------------------------------------------------------------
pause
echo -------------------------------------------------------------
echo.
echo Per favore ATTENDERE LA FINE DEL BACKUP
@rem echo il PC si spegnera' da solo
echo.
echo -------------------------------------------------------------
sleep 2
echo robocopy %tobackup% %bkdir% /E /R:1 /W:1 /PURGE /V /ETA
robocopy %tobackup% %bkdir% /E /R:1 /W:1 /PURGE /V /ETA
net use k: /d
echo ----------------------------------------------------------------
echo.
echo Backup terminato. EL %errorlevel%.
@rem echo Il PC verra' spento.
echo.
echo.
echo ----------------------------------------------------------------
pause
@rem shutdown -f -s -t 1
@rem exit
The author does not allow comments to this entry
No comments