Oct 31, 2015

Change Creation Date of file to Modified Date using PowerShell

Use the following PowerShell command to change the Creation Date to the Modified Date of all files in a folder.

Get-ChildItem -recurse -filter *.JPG | % { $_.CreationTime = $_.LastWriteTime }

No comments: