自动清理IIS log 日志脚本
系统环境:windows server 2012 r2
IIS 版本:IIS8
操作实现清理IIS log File
脚本如下:
@echo off ::自动清理IIS Log file set log_path=C:\inetpub\logs\LogFiles ::清理所有log 日志 for /f "delims=" %%i in ('dir /b /a-d /s %log_path%\"*.Log"') do ( del /S /F /Q %%i ) pause