vote up 1 vote down star

Hello there,

I would like to be able to change the title of the Command window at various points throughout my NAnt script.

I have tried to use the task to call 'title myTargetName' but it gives me the following error:

'title' failed to start.

The system cannot find the file specified

Is there a way to do this please? Thanks in advance!

flag

65% accept rate

3 Answers

vote up 0 vote down

You could use a cmd or batch file to run the nant script containing this:

title %1 
%NANT_PATH%\nant.exe %1
link|flag
How I am taking your suggestion is that the cmd file changes the title and then runs a particular script. Is that what you mean? What I mean, is that during the running of a NAnt script within a Cmd windows, I want to be able to rename the title of the running window on an adhoc basis, as a way of indicating which part of the script the system is currently processing, as each script can run for 5 minutes or so. – Brett Rigby Jul 31 at 14:55
You could make a cmd or batch that one after one builds the targets you want and on every new target call sets the title. Not very comfortable i must admit but should run without any additional requirements. – zoidbeck Jul 31 at 19:02
vote up 0 vote down

This should work:

<exec>title Step One</exec>

<!-- Do some stuff -->

<exec>title Step Two</exec>

This uses a regular cmd.exe command.

link|flag
No, sorry - I get this error back from NAnt... 'program' is a required attribute of <exec ... />. – Brett Rigby Jul 31 at 14:51
You're right. title is not an executable as such, but a special command recognised by cmd.exe. – Drew Noakes Jul 31 at 15:01
vote up 1 vote down

If you compile this small program as a console app:

namespace SetTitle
{
    internal static class Program
    {
        private static void Main(string[] args)
        {
            System.Console.Title = string.Join(" ", args);
        }
    }
}

Then this would work:

<exec>SetTitle.exe "Step One"</exec>

<!-- Do some stuff -->

<exec>SetTitle.exe "Step Two"</exec>

You could do the same with a custom NAnt task, but the work involved would be more complicated and you'd still have to make your NAnt task assembly discoverable during the script's execution.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.