I am brand new to PowerShell and have figured out how to extract a relevant line from a log file:
C:\Documents and Settings\admin\Local Settings\Application Data\Microsoft\SyncToy\2.0\SyncToyLog.log:325:SYNC: 05/22/2012 14:54:55:857: SyncToy run of Profile Backup (C:\Documents and Settings\admin\, H:\Sync\) completed at 5:22/2012 2:54:55 PM.
What I would like to do is extract the first timestamp sans milliseconds (the one that uses 24 hour time) to a variable. Result:
05/22/2012 14:54:55
Any assistance would be appreciated.
One way would be to parse out the date/time string with a regular expression and then convert it to a date/time object:
Then convert it to a datetime object:
Now you can display it or store it in a variable however you want: