Trigger a maxscript on opening a maxfile?

Hi, is there a way in Max to execute a script when a max file is opened?
Since it seems to be impossible to convince artists to work with a saved schematic open (so they can see when they’re screwing up other people’s work, ie. deleting existing scene nodes) my aim is to open the schematic when they open the file, and do other things such as locking layers containing skeletons and so on.
Is that possible?
Thanks.

You can put a script in the start up directory, so it runs on Max Startup,
in the script register an event callback using callbacks.addScript() for the event #filePostOpen or similar.

Search Max Script help for “General Event Callback Mechanism”

Thanks for the tip, I will check it out.