下面的一段代码是我在网上七拼把凑出来的。目前是能够实现基本的功能了,但是实在是在找不到导出日志的命令,希望各位知道的朋友指点指点。这个是第一次接触批处理,基本感觉很烂。
问题 1:批处理的主要目的:复制outlook的个人文件到文件服务器上的(已经实现),
需求:为了日后维护方便,希望能保存运行记录到一个日志文件,
问题 2:(关键问题)请先看看下面的2幅图片,因为目前这个批处理只单单的运行并拷贝文件到指定的文件服务器,其实我们每个site基本都会有文件服务器,如何才能够让他们自动的筛选出来自己的机器名称对应的site。并且拷贝完成。
如果其中一个site的用户跑到另一个site,脚本在运行的时候能自动的判断出来不是同一个site,并终止运行- @echo off
- Color 3F
- mode con:cols=100 lines=25
- ::中间有一段说明我省了
- Echo Please chosse a item you want:
- Echo [Y] backup your personal data of Outlook
- Echo [N] I do not want to backup my personal data now
- Set Choice=
- Set /P Choice= Do you want to Backup your Outlook personal data (Y/N) ,Press "Entry" to complete:
-
- If "%Choice%"=="" Goto Start
- If /I "%Choice%"=="y" Goto copy
- If /I "%Choice%"=="n" Goto exit
- Goto Start
- :copy
- Cls
- del [url=file://szun04/desktop$/%25username%25/outlook/][color=#000000]\\szun04\desktop$\%username%\outlook\[/color][/url]*.* /s /q
- xcopy d:\Outlook\* [url=file://szun04/desktop$/%25username%25/outlook/][color=#000000]\\szun04\desktop$\%username%\outlook\[/color][/url]*.* /v /k /y /s /e
- @echo.
- @echo.Backup complete
- Pause
- exit
- :exit
- if not errorlevel 1 goto ok else error
- :error
- CLS
- ECHO Error: No files found to copy or no destination available.
- ECHO Please call the MIS on 66167859 to report the problem.
- PAUSE
- GOTO exit
- :ok
- ECHO Files were copied without error
- PAUSE
- GOTO exit
复制代码
|