/Helge
Paul T.
"Helge Kruse" <Helge.Kru...@gmx.net> wrote in message
news:OuP9iE4...@TK2MSFTNGP14.phx.gbl...
Paul T.
"gd.shukla" <gdsh...@discussions.microsoft.com> wrote in message
news:A8AABABB-E66A-48BC...@microsoft.com...
> Hi paul,
> thanks for ur reply.
> could u please tell me where that change is to be done or the path of the
> file.
> i can do the change manually. If it is not some classified information.
> Would u please care to explain.
>
> --
> GD Shukla
--
Dean Ramsier - eMVP
BSQUARE Corporation
"gd.shukla" <gdsh...@discussions.microsoft.com> wrote in message
news:0A447CC3-996B-4E52...@microsoft.com...
Excellent tip, thanks! I created a batch file to create copyrts.txt
and set the platform to run a "pre-make image" custom build step with
an action to run the batch file. It's pretty simple compared to yours,
but it puts the current date and time in the file, which is good enough
for us.
If anyone is interested, I posted the batch file below. (with a few
changes...to protect the innocent)
Thanks Paul,
Dan.
- - - copyrts.bat - - -
@ECHO OFF
ECHO Acme Project Zebulon > copyrts.txt
ECHO Copyright © 1897 - 1931 Acme Corp. >> copyrts.txt
ECHO. >> copyrts.txt
ECHO. | DATE | FIND /I "current" >> copyrts.txt
ECHO. | TIME | FIND /I "current" >> copyrts.txt
ECHO. >> copyrts.txt
ECHO -dpm >> copyrts.txt
ECHO OK
- - - creates a file that looks like this - - -
Acme Project Zebulon
Copyright © 1897 - 1931 Acme Corp.
The current date is: Wed 03/01/2006
The current time is: 11:18:47.54
-dpm