1

I have a bat script file with many instructions. One of them takes so much time and i want to know how much time the execution takes.

In Unix this is so simple with the prefix 'time'.

Thanks in advance.

Jorge Vega Sánchez
  • 6,624
  • 14
  • 50
  • 75
  • 1
    possible duplicate of [this](http://stackoverflow.com/questions/673523/how-to-measure-execution-time-of-command-in-windows-command-line) – niculare Feb 28 '13 at 10:01

1 Answers1

0

The best solutions is to use the command

Measure-Command {copy *.* d:\dossier\}
Jorge Vega Sánchez
  • 6,624
  • 14
  • 50
  • 75