Problem:
How to create statistics collections of holding licenses for deployment under Windows?
Resolution:
The following script file displays the collection. The parameters are:
apptrackstat.bat nnn mmm
where:
nnn = the number
mmm = the period in seconds
**************apptrackstat.bat******************
for /L %%i IN ( 1 , 1 , %1 ) DO (
apptrack batch 2
sleep %2
)
Please note, to run this script, it is necessary to install the freeware file sleep.exe which is available for download from http://www.sleepcmd.com.

