本帖最后由 fish509008 于 2013-12-9 22:23 编辑
回复 30# 再世情緣
不好意思啊,好像还是有点问题,配置文件中一共5个资源和搜索条件,但是telephony的统计错误,使用量和可用量都是0,有空帮我分析下。
sures.txt就用之前附件里提供的就行。
count.bat代码如下:- @echo on &color 0a &setlocal enabledelayedexpansion
- pushd "%cd%"
- :main
- rem sures sures >sures.txt
- for /f "tokens=1,2,3 delims==" %%a in (config.txt) do (set /a "i=j=0"
- if not exist "%computername%_%%a.txt" (echo.data time computername %%a^<Inuse^>^/^<Available^>)>"%computername%_%%a.txt"
- for /f "delims=" %%1 in ('findstr /i /c:"%%b" "sures.txt" 2^>nul') do (set /a i+=1)
- for /f "delims=" %%1 in ('findstr /i /c:"%%c" "sures.txt" 2^>nul') do (set /a j+=1)
- (echo.!date! !time! %computername% !i!^/!j!)>>"%computername%_%%a.txt")
- echo %%d
- ping localhost -n 30 >nul
- cls &goto :main
复制代码
|