Touch

Stamp LastWriteTime to the current time.

foreach ($file in (ls .)) {
     $file.LastWriteTime = get-date
}

Chrome Apps Start Menu folder:

foreach ($file in (ls "~\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Chrome Apps")) {
     $file.LastWriteTime = get-date
}
Updated: 2026 Aug 19