Quarantine Control (RQC.EXE) Return Codes from Successful String?

  • Thread starter Thread starter Danny Russell
  • Start date Start date
D

Danny Russell

I am having probems with a script which launches rqc.exe
to pull a machine out of quarantine. The success of the
quarantine removal is variable yet the machine I am
testing passes all quarantine checks. I would like to know
if rqc.exe passes a return code (after receiving a success
or failure response from rqs.exe. Then I would be able to
trap this code in my script and attempt to resend the
string if the code indicates failure...

Thanks for any help you may be able to offer me.

Kind Regards,

Danny Russell
 
RQC return codes
-1 -> Generic error
0 -> Success
1 -> Socket error
2 -> Invalid signature

You can use traces to debug.

To enable tracing:
netsh ras set tracing * ENABLED

Connect with RQC and check the %windows%\tracing\rqc.log
 
Back
Top