You would like to perform a partial IPL on a system, and do not want MIM to come up at all.
The preference is for MIM to not come up at all, versus having it come up at IPL and then shutting it down.
You are trying to understand how MIM (CAMIMGR) gets started during the IPL process.
z/OS
To set up the Early Start mechanism, the following members of SYS1.PARMLIB need to be modified as follows:
IEALPAxx
To add the MIMESNQX module to LPA, add the following statement to the member:
INCLUDE LIBRARY(mimloadlibrary) VOLUME(xxxxxx) MODULES(MIMESNQX)
PROGxx
To execute MIMESNQX, add the following statement:
EXIT ADD EXITNAME(ISGNQXIT) MODNAME(MIMESNQX) STATE(ACTIVE) FIRST
To prevent CAMIMGR from being started, comment the GRS exit (ISGNQXIT) in the PROGxx member. This will prevent the GRS exit from being loaded which will prevent the internal START CAMIMGR command from being executed from within the exit.