windows常用命令记录

Published on
95 1~1 min

1、windows批量将文件创建日期、修改日期、最后访问日期更新为指定日期

打开Windows PowerShell工具,cd到需要变更时间的目录下,使用以下命令

Get-ChildItem -recurse | ForEach-Object { $_.LastWriteTime = '2024年5月30日 12:00:00';$_.CreationTime = '2024年5月25日 12:00:00' ;$_.LastAccessTime = '2024年6月25日 12:00:00'}