I have this field data and need help to parse to a proper data format from a wince log file:
Import-Csv D:\svr\log_2021-0810_18-55-04_logcmd.txt -header Date,Ip,CMD,Command -Delimiter ':' | foreach {
$_.Date + " " + $_.CMD
}
Example Data:
599123178 10.10.10.2
599123468 10.10.10.2
599123846 10.10.10.2
599124189 10.10.10.2
I tried to use [DateTime]::Parse() but no avail.