Find this file here
C:\Users\<USERNAME>\AppData\Roaming\Autodesk\Inventor 2023 Vault Addin\ApplicationPreferences.xml
If Inventor is closed - you can simply modify this file and the changed settings will take effect the next time you open Inventor.
If Inventor is open - read the ID and Name from the file and you can use this iLogic snippet to set the values.
Imports Autodesk.DataManagement.Client.Framework.Forms
AddReference "Autodesk.DataManagement.Client.Framework.Forms.dll"
'Library.ApplicationPreferences.Load() 'Load modified settings if file edited outside of Inventor process.
Library.ApplicationPreferences.Set("CheckInDialogOptions", "IncludeChildren", True) 'Directly sets the setting right from the iLogic Rule.
See this post to edit vault prompts. Those are handled differently.
https://forums.autodesk.com/t5/inventor-programming-ilogic/is-there-a-why-to-change-promt-or-not-bei...
