I have a set of computers in a lab type of environment where I want the dock to be uniform on all machines and using my customizations.
I currently have a package created for the dock items, and the following script setup to delete the com.apple.dockfixup.plist file because I don't want Apple to add icons when the machines auto update. I run this script at startup.
#!/bin/bash
rm -rf /Library/Preferences/com.apple.dockfixup.plist;
Do any of you geniuses have a better way of handling this other than deleting the file on every startup?