How to forcefully log all users out of an instanceDescriptionHow to expunge specific or all sessions from an instance.ResolutionTerminate 1 specific session In User Administration > Logged in Users you will find the list of users logged in on a particular node.Select the active session you want to finishClick on Lock Out Session. To terminate all the user sessions, you can use the following script: Use this script inside a scheduled job on sys_trigger table (see Additional Information)Make the job run on all the nodes. var gr = new GlideRecord('v_user_session');gr.query();while(gr.next()){gr.locked = true;gr.update();} NOTE: This script will terminate all the sessions on v_user_session table. So run the script on Demand or at a particular time.Additional InformationSchedule a script execution