特定のフォルダ配下のファイルの最終更新日時を一括で変更する
July 6, 2025 2:16Get-ChildItem -Recurse | ForEach-Object { if (!$_.PSIsContainer) { $_.LastWriteTime=[DateTime]'2020-01-01 00:00:00'; $_.FullName; }}
Get-ChildItem -Recurse | ForEach-Object { if (!$_.PSIsContainer) { $_.LastWriteTime=[DateTime]'2020-01-01 00:00:00'; $_.FullName; }}