how do I get this syntax corected
For /F %%A in (computers.txt) && for /F %%B in (users.txt) do (
for /f "tokens=2" %%i in ('qwinsta /SERVER:%%A ^| find /i %%B') do echo %%i | rwinsta %%i /SERVER:%%A /V
)
i want to terminate all users sessions from the users.txt file on all the computers.txt file