Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
You can use this PowerShell code to change a file's or folder's
Creation time
Last access time
Last write time
Get-ChildItem <path\filename> | % {$_.CreationTime ='03/06/2019 19:00:00'}
Get-ChildItem <path\filename> | % {$_.LastAccessTime ='03/06/2019 19:00:00'}
Get-ChildItem <path\filename> | % {$_.LastWriteTime ='03/06/2019 19:00:00'}