Further to others' suggestions, you can also preset the "Drop Element" tool using key-in: "set item toolsettings <option> = <1|0>"
The only thing with using the "set item toolsettings" key in is that you can only use it after a tool has been run. So the sequence of key-in would be:
drop element
set item toolsettings <option1> = <1|0>
set item toolsettings <option2> = <1|0>
...
or to combine them into a singleline:
drop element;set item toolsettings <option1> = <1|0>;set item toolsettings <option2> = <1|0>;...
If you want more information on how to utilise the key in, you can refer to these 2 AskInga posts:
Note that there's a limit on the number of characters in a combined key-in, so you may not be able to preset all the tool options using just 1 keyin. If you find yourself there, VBA would be the best way to go.