We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb2fa2e + 93b76c4 commit f3c5c01Copy full SHA for f3c5c01
installation_and_upgrade/move_old_ibex_backups.bat
@@ -0,0 +1,9 @@
1
+setlocal
2
+set "BACKUPROOT=\\isis.cclrc.ac.uk\inst$\Backups$\stage-deleted\%COMPUTERNAME%"
3
+if not exist "%BACKUPROOT%" mkdir "%BACKUPROOT%"
4
+cd /d C:\Data\old
5
+for /D %%i in ( "ibex_backup_*" ) do (
6
+ @echo Moving %%i
7
+ robocopy "%%i" "\\isis.cclrc.ac.uk\inst$\Backups$\stage-deleted\%COMPUTERNAME%\%%i" /XJ /E /Z /MOVE /NP /NFL /NDL
8
+)
9
+pause
0 commit comments