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?
You'll have to run a scheduled task to do it. Here's a Powershell script that should work.
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.
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!
I'm currently doing this using a very simple batch file script:
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:
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.
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.
Create a scheduled task on the server. In the actions section, you want:
Give it a daily or weekly schedule. Done.
Microsoft suggests a script on it's website.
Below is a modified version I'm using for my needs.
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
).