PowerShell script to move files and folders including subfolders from one location to another older than x days
问题 I developed a PowerShell script, and it's working absolutely fine. The only challenge is the files in the subfolders are not getting moved to the destination. get-childitem -Path "\\servername\location" | where-object {$_.LastWriteTime -lt (get-date).AddDays(-31)} | move-item -destination "C:\Dumps" I am unable to customize the script further. 回答1: Use the -Recurse option on the Get-ChildItem command to get through to the files in the sub folders and then move each individually by piping the