I am trying to create a report-specific column (DateTime - Regular Date) where I can extract the datetime from the description field of the user object using a regular expresssion.
The description field is popluated similar to "Deprovisioned on 1/20/23 8:20:20 AM by me@email.com"
$object = $Context.GetDirectoryObject()
$line = $object.Get("description")
$dateTime = ??
$Context.Value = $dateTime