I just discovered that IIS builds up logs indefinitely and there don't appear to be any IIS settings that will automatically clean out old log files. What is the best way to keep my IIS logs under control so that they don't fill the entire hard drive?
-
do you want to keep the old ones around in a zip archive, or delete them? – Jeff Atwood Sep 14 '09 at 23:34
-
You are expected to manage the log files yourself. – Evan Anderson Oct 20 '09 at 14:12
-
CCLeaner has an option to clean IIS Log Files !!! – May 20 '16 at 05:03
6 Answers
You'll have to run a scheduled task to do it. Here's a Powershell script that should work.
set-location c:\windows\system32\Logfiles\W3SVC1\ -ErrorAction Stop
foreach ($File in get-childitem -include *.log) {
if ($File.LastWriteTime -lt (Get-Date).AddDays(-30)) {
del $File
}
}
This should purge anything that was last modified more than 30 days ago. Change the path in the first line to wherever your log files are stored. Also change the -30 to however long you want to retain the files. -30 means you will delete anything older than 30 days.
You can have a look at this article that shows different properties for the FileInfo object if you don't want to use LastWriteTime.

- 408
- 2
- 9

- 37,883
- 12
- 92
- 146
-
2On Windows Server 2008 R2 (PS 2.0) I had to modify the Get-ChildItem call to be `Get-ChildItem *.* -include *.log` – roryWoods Jun 14 '16 at 13:25
-
-
I run a version of this that also zips them up incase, once zipped they are much smaller) `Get-ChildItem -Path "D:\logs\www-iis\W3SVC3" -Recurse | Where-Object CreationTime -lt (Get-Date).AddDays(-7) | Move-Item -Destination "D:\logs\www-iis\temp" & "C:\Program Files\7-Zip\7z.exe" a D:\logs\www-iis\log-backup.7z D:\logs\www-iis\temp\* Remove-Item -path D:\logs\www-iis\temp\*` – Jeff Dec 02 '22 at 18:13
-
@Jeff 7z.exe comes with a `-sdel` switch to delete archived files afterwards, which makes it unnecessary to move them to a temporary folder and manually delete them. – Nicolas Melay Feb 28 '23 at 20:25
You could brew your own, but i believe some clever person has written this for you already. Check out IISLogs & IISLogs Lite!
If all your doing is deleting the logs, then you can turn logging off if its not needed! you will save your server a lot of I/O!

- 10,796
- 7
- 37
- 47
-
2Just an update, but IISLogs Lite hasn't been available for some time, and IISLogs is *not* cheap. – Bacon Bits Jun 13 '16 at 12:58
-
1
I'm currently doing this using a very simple batch file script:
forfiles -p C:\inetpub\logs\LogFiles\ -s -m *.log -d -180 -c "cmd /C DEL @File"
I also made a Scheduled Task entry to launch it daily and even activated the file compression feature on that folder: all these things together fixed my problem with IIS files for good.
Explanation of the switches in the batch file:
- -s or /S : recurse into all subfolders
- -p or /P : path
- -m or /M : file mask
- -d or /D : number of days (-180 = older than 180 days)
- -c or /C : command to execute
If you're looking for a viable Powershell alternative, see this other answer: for other suggestions on how to properly reduce the IIS LogFiles folder, check out this post.
Create a scheduled task on the server. In the actions section, you want:
- Action: Start a Program
- Settings: Program= Forfiles.exe (in Windows\System32 folder)
- Add Arguments: -p "C:\inetpub\logs\LogFiles" -s -m . /D -45 /C "cmd /c del @path"
- Start in: C:\
Give it a daily or weekly schedule. Done.

- 123
- 6

- 11
- 1
Well, if you want to clean them up regularly then why don't you disable request logging in IIS? You may use something like google analytics or some other service, I see many people dong this to avoid the headache with IIS logs affecting performance and eating up all disk space but it all depends on your requirements of course.

- 845
- 5
- 15
- 24
Microsoft suggests a script on it's website.
Below is a modified version I'm using for my needs.
Wscript.Echo "Starting log removal"
sLogFolder = "d:\retentiontest"
iMaxAge = 30 'in days
Set objFSO = CreateObject("Scripting.FileSystemObject")
set colFolder = objFSO.GetFolder(sLogFolder)
Wscript.Echo "Removing log files from folder: " & colFolder
For Each colSubfolder in colFolder.SubFolders
Set objFolder = objFSO.GetFolder(colSubfolder.Path)
Set colFiles = objFolder.Files
For Each objFile in colFiles
iFileAge = now-objFile.DateLastModified
if iFileAge > (iMaxAge+1) then
Wscript.Echo "Removing File: " & objFile.Name
objFSO.deletefile objFile, True
end if
Next
Next
Note that I've changed from "DateCreated" to "DateLastModified" since counterintuitively date created can be a later than last modified, as can be the case with copied files. You probably don't want to remove files that have been recently updated.
Then run it using cscript.exe (for example, cscript.exe d:\scripts\logRetentionScript.vbs
).

- 191
- 1
- 10