yichong
rem echo off
color 0a

rem Version:backup_was V1.0,had tested on windows 2003
rem FUNTION:use rar compress the D:\ErpDataLog& D:\images
rem IP:10.8.252.23, <ErpDataLog&images>

set PATH=%PATH%;D:\tomcat_bacth
set BATCH=D:\BATCH
set BACKUP=D:\backup\Server3
set ErpDataLog_images_WAR=D:\ErpDataLog&D:\images

rem hh=8:00--> 08:00
set CurTime=%time%
set hh=%CurTime:~0,2%

rem 时间戳 年月日时分秒
set FILE_DATE=%date:~0,4%%date:~5,2%%date:~8,2%

rar a -m5 %BACKUP%\images%FILE_DATE%.rar D:\web\images
sleep 3
rar a -m5 %BACKUP%\online%FILE_DATE%.rar D:\web\online
sleep 3
rar a -m5 %BACKUP%\wwwroot%FILE_DATE%.rar C:\inetpub\wwwroot
sleep 3
copy *%FILE_DATE%*.rar \\10.8.252.251\Server3\

rem delete 7days ago 
forfiles /p D:\backup\Server3 /m *.log -d -7 /c "cmd /c del /f @path"
forfiles /p D:\backup\Server3 /m *.rar -d -7 /c "cmd /c del /f @path"

echo local_batch.bat OK,storage_backup.bat begin.
rem pause
call storage_backup.bat

  

分类:

技术点:

相关文章:

  • 2021-10-11
  • 2021-12-04
  • 2022-01-30
  • 2021-11-01
  • 2021-12-30
  • 2021-05-17
  • 2021-12-19
  • 2022-01-09
猜你喜欢
  • 2021-11-11
  • 2022-12-23
  • 2022-02-03
  • 2021-12-30
  • 2021-10-22
  • 2021-05-03
  • 2021-10-01
相关资源
相似解决方案