Hi Chee Meng,
I believe it's possible with custom authentication script. You can return `False` for Prepare for Step method.
Something like...
```
def prepareForStep(self, configurationAttributes, requestParameters, step):
if isClientDisabledForThisAcr
return False
return True
```