The agent-to-server communication key (keychain.json) auto-updates periodically due to scheduled task which may cause multiple agents to become Out-of-Date or disconnected in the console.
These steps can be used to reset the communication key file (keychain.json) back to the previous version if the agents aren't able to pull the newest one from the server.
cd "C:\Program Files (x86)\Bit9\Parity Agent" dascli status
Communication Key: 6601155A-C399-4B15-A8DF-1234567890
\Program Files (x86)\Bit9\Parity Server\hostpkg\keychain.json
use das; update dbo.communication_keys set key_state = 0 where key_state = 1 use das; update dbo.communication_keys set key_state = 1 where key_id like '6601155A-C399-4B15-A8DF-1234567890' --this is an example value, pls replace it with the one from Step 1