我需要解决方案
Hi all,
I want to write a simple batch file that blat will use to email me the status of all Full backups that will run in the next three ays.
I was going to use this:
set month=%date:~4,2%
set day=%date:~7,2%
set year=%date:~10,4%
nbpemreq -due -date %month%/%day%/%year% | findstr "FULL"> c:\schedule.txt
than blat c:\schedule.txt.
This works! But, how do I add 3 days to the date? Or, is there a better way to get this info?