I am parsing an SQLite database using the PowerShell SQLite module, and a couple of the return values are created and modified, both of which are in Unix time.
What
$ctime = $entry.created [datetime]$origin = '1970-01-01 00:00:00' $origin.AddSeconds($ctime)