标签:files 日志 实现 pause window net nbsp 自动 class
系统环境: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
标签:files 日志 实现 pause window net nbsp 自动 class
原文地址:http://www.cnblogs.com/itusye/p/7249598.html