Here’s a powershell script you can use to delete files in a directory (and all sub-directories) X days old or older.
$Now= Get-Date
$Days = “3“
$TargetFolder =… [Keep Reading]
Here’s a powershell script you can use to delete files in a directory (and all sub-directories) X days old or older.
$Now= Get-Date
$Days = “3“
$TargetFolder =… [Keep Reading]
I love powershell, I love it’s power, flexibility and extensibility, however I I do most of my work in the shell because I cannot stand to use the ISE.
The only feature … [Keep Reading]