-
-
Save acataluddi/3f40861e7c65ae3ad0cc4a0a0de1fb14 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$LogPath = "C:\inetpub\logs\LogFiles\W3SVC1\*" | |
$LogFiles = "*.log" | |
[int] $LogRetention = "-30" # in Days | |
Get-ChildItem $LogPath -Include $LogFiles -Recurse | Where-Object {$_.LastWriteTime -lt (Get-Date).AddDays($LogRetention)} | Remove-Item |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment