Yes... FP's settings are stored in the registry. they are located here:
Computer\HKEY_CURRENT_USER\Software\Future Pinball\GamePlayer
So what you can do is export the FP settings from the registry to a REG file. You can make a few of these as needed for your different settings per table, etc.
Or, you can use a *.BAT file (batch) that will make the changes for you as well. You can use regadd (to add some settings) or regimport (to import all settings at once), etc.
Reference article for the reg import command, which copies the contents of a file that contains exported registry subkeys, entries, and values into the registry of the local computer.
docs.microsoft.com
For PinEvent, I recommend cabinet users disable the FP Backglass and Arcade Mode settings in the Video settings, just for PinEvent tables.
Here is how I disable the FP Backglass and Arcade Mode in the Registry
I add this to my front-end’s FP Launch script (before FP gets launched):
REG ADD "HKCU\Software\Future Pinball\GamePlayer" /v "ArcadeMode" /t REG_DWORD /d 0 /f
REG ADD "HKCU\Software\Future Pinball\GamePlayer" /v "SecondMonitorEnable" /t REG_DWORD /d 0 /f
Then add these two lines to re-enable the Backglass and Arcade mode on your Close/Exit script:
REG ADD "HKCU\Software\Future Pinball\GamePlayer" /v "ArcadeMode" /t REG_DWORD /d 1 /f
REG ADD "HKCU\Software\Future Pinball\GamePlayer" /v "SecondMonitorEnable" /t REG_DWORD /d 1 /f