When using a search and calling out timestamp I am getting weird results on how the Timestamp is being formatted. Here is my current search I am using:
ComputerName=* UserName=* CommandLine=* ImageFileName=* FileName=* RawProcessId_decimal=* TargetProcessId_decimal=*|spath CommandLine|fieldformat Timestamp=strftime(Timestamp, "%y/%d/%m/ %H:%M:%S") |table timestamp ComputerName, UserName, FileName, RawProcessId_decimal, TargetProcessId_decimal, CommandLine,| rename timestamp AS "Date", ComputerName AS "Host", UserName AS "User", CommandLine AS "Command Line", FileName AS "File Name", RawProcessId_decimal AS "PID", TargetProcessId_decimal AS "Process ID"
The formatting I am using is returning this as the date column for this issue:
2017-02-23T16:22:09.956Z
Is there a way I can remove that T and Z and just add a space because this seems to be happening to every search I try that includes the date?
Thank you,
Jack
... View more