DOWNLOAD THE CODE:
Download the Code 23468.zip

Editor's Note: Share your Windows and .NET discoveries, comments, problems, solutions, and experiences with products and reach out to other Windows & .NET Magazine readers (including Microsoft). Email your contributions (400 words or less) to r2r@winnetmag.com. Please include your phone number. We edit submissions for style, grammar, and length. If we print your submission, you'll get $100. Submissions and listings are available online at http://www.winnetmag.com/articles. Enter the InstantDoc ID number in the InstantDoc ID text box.

When Windows NT Backup writes a log file, the program always uses the same name. This method overwrites previous days' logs and thus leaves administrators wondering whether their backups have been working. To solve this problem, I wrote the script that Listing 1 shows to automatically name log files with the current date and time.

I used ntdate.exe, which is in Jeffrey Harris's freeware AINTX Toolset (available at http://user.mc.net/~jlh/nttools/html/download_aintx.htm), and the form of the for /f command that parses command outputs. Ntdate provides the parsed system date to the for command.

I put the command file in NT's Scheduler. You can use REM statements (i.e., ::) on the line containing the Ntbackup command to specify whether you want full or incremental backups. This script is for NT 4.0 and includes optional lines to accommodate Microsoft Small Business Server (SBS) 4.5.

End of Article




You must log on before posting a comment.

If you don't have a username & password, please register now.

Reader Comments

It works great but I only need the day, month, year. But the string varables do not work, %%M and %%m give both the hour. What are the exact varaibles to get an output like 250202 (meaning 25th february 2002)?

Richard

When I run the batchfile it works fine but I get two logfiles. One with filename in capitalform and one "normal", only the log-file in capitalformat hold data.

Richard

I have used the script and it works fine. However the problem is that i get two log files as the output after I execute the script. Oneis empty while the other has the output. Any fix for this bug??

Suraj