I have Googled for a solution but found nothing relevant. I'm sure there is an easy way, but I would like to reformat a date column and NOT also print the original date column. What do you guys think?
Below is my (mostly) working Powershell code.
( Get-ItemProperty HKLM:SoftwareWow6432NodeMicrosoftWindowsCurrentVersionUninstall* | Select-Object DisplayName , InstallDate , @{ Name = "Formatted" ; Expression = { [ datetime ]:: parseexact( $_.InstallDate , 'yyyymmdd' , $null ).ToString( 'mm/dd/yy' ) } } | Where-Object { $_. InstallDate -ne $null } )
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…