in reply to Re: Calling Windows "time /t" command
in thread Calling Windows "time /t" command

There's a neat little trick you can use here - just invoke some (pointless) redirection:
system("time /t <nul");
That should work on all of your Windows boxes. Another option that I think will work everywhere for you is to specifically invoke the cmd.exe shell:
system("cmd /C time /t");
Cheers,
Rob