DrSeussFreak
Programmer
I have this cmd file
That I need to make a vbs file so that once it finishes (whether successful or not) it sends me an e-mail notifying me.
Thoughts?
Code:
@ECHO OFF
set backup_dir1=L:\ORACLE\MARSDATA\ARCHIVE
set backup_dir2=K:\hot_backup\oraob10
c:
cd "\Program Files\tivoli\tsm\baclient"
dsmc incremental -optfile=dsm.opt %backup_dir1%\*.* %backup_dir2%\*.* > c:\adsmlogs\bkuparcfiles_%date:~4,2%%date:~7,2%%date:~10,4%.log
exit
That I need to make a vbs file so that once it finishes (whether successful or not) it sends me an e-mail notifying me.
Thoughts?