post | sidebar | footer

2008年8月24日 星期日

Windows Server 2003備份bat檔

最近需要在windows server 2003將所備份的檔案copy到網路磁碟NAS上然後加上星期予以區隔。
在網路爬了些文章,終於寫好了。以下就僅供記錄參考了。

set wk=%date:~10,15%
if %wk%==星期一 goto mon
if %wk%==星期二 goto tue
if %wk%==星期三 goto wed
if %wk%==星期四 goto thu
if %wk%==星期五 goto fri
if %wk%==星期六 goto sat
if %wk%==星期日 goto sun

:mon
copy d:\backup\backfile.txt Y:\backfile_mon.txt
goto finish

:tue
copy d:\backup\backfile.txt Y:\backfile_tue.txt
goto finish

:wed
copy d:\backup\backfile.txt Y:\backfile_wed.txt
goto finish

:thu
copy d:\backup\backfile.txt Y:\backfile_thu.txt
goto finish

:fri
copy d:\backup\backfile.txt Y:\backfile_fri.txt
goto finish

:sat
copy d:\backup\backfile.txt Y:\backfile_sat.txt
goto finish

:sun
copy d:\backup\backfile.txt Y:\backfile_sun.txt

:finish
pause

0 意見: