powershell - ghdrako/doc_snipets GitHub Wiki
update modified date to current date in all files of a directory and its subdirectories
Recursively "touched" all the files in the directory and subdirectories to make it look as if they had all been recently modified
cd "C:\mydirectory"
dir -R | foreach { $_.LastWriteTime = [System.DateTime]::Now }