PasswordLastSet change format

Hi,
I am using get-adcomputer to get the PasswordLastSet date. I would like to change this to yyyy-mm-dd. Can someone help me with this? I’ve tried some things with no luck at all.
Thanks!

ah, just got it:

$d = $Computername.PasswordLastSet
$d = $d.ToShortDateString()

:slight_smile:

Since PasswordLastSet is a System.DateTime object, it can be manipulated in all the same ways. The ToString() method can be used to specify exactly how the date should be formatted.

$computer = Get-ADComputer Computer01 -Properties PasswordLastSet
$computer.PasswordLastSet.ToString(“yyyy-MM-dd”)

http://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx

Way better, thanks!