Forum Discussion
AngeloLobo_79
Feb 09, 2022Copper Contributor
Script to Move Folder Files
Hi people. I have a share on a machine that has more than 1kk files and the manual copy process becomes unfeasible. I know the command to move these files to another folder, but I would like to move ...
Feb 10, 2022
This searches for all bin files which have been saved before 01/11/2021 as example
Get-ChildItem -path "c:\temp" -Filter *.bin -Recurse | Where-Object Lastwritetime -lt '01/11/2021'