admin 管理员组

文章数量: 887007

在powershell里面执行如下语句
更改为当前时间,执行如下语句:

Get-Childitem -path ‘D:\Tomcat7\webapps’ -Recurse | foreach-object { $_.LastWriteTime = Get-Date ; $._CreationTime = Get-Date }

更改为指定时间,执行:

Get-Childitem -path ‘D:\Tomcat7\webapps’ -Recurse | foreach-object { $_.LastWriteTime = Get-Date ; $_.CreationTime = ‘26/10/2021 09:46:00’ }

本文标签: 批量 文件 时间 Windows