Torx's Mind
Random IT stuff that I have picked up here and there.
Tuesday, June 24, 2014
Delete all files older than x Days
get-childitem
D:\SQLBackups
-recurse
|
where
{
$_
.
lastwritetime
-lt
(
get-date
)
.
adddays(
-5
)
-and
-not
$_
.
psiscontainer}
|
%
{
remove-item
$_
.
fullname
-force
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment