@echo on
set /a count=0
set /a max=10
:loop
if %count% lss %max% (
wmic process where "name='UniAccessAgent.exe'" delete
wmic process where "name='UniAccessAgentDaemon.exe'" delete
wmic process where "name='UniAccessAgentTray.exe'" delete
wmic process where "name='UniSensitive.exe'" delete
wmic process where "name='Tinaiat.exe'" delete
wmic process where "name='LvaNac.exe'" delete
set /a count+=1
goto loop
)
pause