Well, it COULD exist... but it would take something beyond the batch job by itself.
In general, you cannot just kick everyone out. What you have to do is persuade each copy of Access to exit as gracefully (or not) as possible.
Search this forum for "Forcing Users to Exit" and phrases of that genre. Here's the overview of how you would do this.
1. You have to disable the F11 and Shift methods of bypassing normal Access startup because you need to create a Splash screen or startup screen that never dies. So search the forum for how to prevent users from bypassing startup forms.
2. The startup form or splash form CANNOT EXIT. But it can minimize itself, hide itself, and sit behind the scenes with a timer running on the form.
3. The form's .Timer property can be set for cycling once ever 60,000 msec = 1 minute. When the OnTimer event triggers, check for the pre-defined exit condition (see #5 below.) If the event code finds the condition, it executes a DoCmd.Quit - and keeps on doing so until the application exits. WARNING: This means that if you have "Cancel" returns on some events, you have a way of knowing that it is time to trigger and .UnDo and get the heck out of there. So there is some coordination.
4. The batch job needs to use a command-line feature of Access (see the Help files for Access Command Line options) that runs a macro. The macro should take some action that sets up your exit condition. For instance, it could run an Append query or do some sort of RunCode to muck around with a table's contents. The macro itself must ALSO do a QUIT as its last action, to release the database from the batch job, too. Otherwise it will hang open and be "the database that can never die...." (Sounds like an old Hollywood B movie of the 50's.)
SIDE NOTE: You CANNOT use a "global" variable in a general module's declaration area to do this BECAUSE variables, no matter HOW global or public they are, remain private to your workspace - because that is where they are instantiated. ONLY A RECORDSET can be as "global" as you need for this function.
5. The exit condition might be something simple, like a table with only zero or one records and only two fields - one of which is a non-autonumber PK and the other is a string. If you populate the table with a record that says, <#1, "Force these idiots out of MY database"> (or something gentler, if you wish), then the OnTimer event can do a DLookup of record #1. If it finds the keywords you choose, it forces the exit.
6. Presumably, you would do this to force database maintenance. When you do so, you must remember to reset the record, or take some other action that deletes or invalidates or otherwise prevents the record from forcing your exit, too.
7. To prevent others from futzing around with this table, make your chosen administrator account the table's owner and deny Write, Insert, Update, Append, or any other form of modification to all non-admin users. You would therefore need to implement Workgroup Security to get there from here.
Everything I've mentioned in every talking point can be Searched in this forum. You've got some reading ahead of you, but there is no reason you couldn't do this.