Skip to content

Instantly share code, notes, and snippets.

@alantsai
Last active November 24, 2015 09:54
Show Gist options
  • Save alantsai/ae4fdb605d83af5a00cb to your computer and use it in GitHub Desktop.
Save alantsai/ae4fdb605d83af5a00cb to your computer and use it in GitHub Desktop.
Set specific LastWriteTime (Modified Time) of a directory child file. 把資料夾下面檔案的最後修改時間改成特定時間. #powershell
# 日期格式是 dd/MM/yyyy HH:mm
dir -file -recurse | % { $_.LastWriteTime = '11/19/2015 14:20' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment