Most of the examples on using Windows Batch For Loop is about using "IN".
FOR %%A IN (1 2 3 4) DO ECHO %%A
I need to use NOT IN instead. When I type something as:
FOR %%A NOT IN (1 2 3 4) DO ECHO %%A
It says "NOT was not expected at that time".
Thanks