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:
Post a Comment