Link to home
Start Free TrialLog in
Avatar of CalmSoul
CalmSoulFlag for United States of America

asked on

How to show windows miliseconds timestamp for a file?

Is there a way to show detail time stamp for the file

Date, time, minutes, seconds, miliseconds.
Avatar of moon_blue69
moon_blue69

You can see when it was last modified but not upto the precision of milli - seconds I think
Avatar of CalmSoul

ASKER

yes I want precision of mill
ASKER CERTIFIED SOLUTION
Avatar of Bill Prew
Bill Prew

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
billprew:

what is the command?
Some samples here:

http://www.winplat.net/post/How-to-check-file-properties-through-WMI-command-line.aspx

http://technet.microsoft.com/en-us/library/bb742610.aspx

Here's a simple example to give you the ide:

WMIC DATAFILE WHERE Name="c:\\temp\\test.txt" get Name, LastModified

~bp