Maybe you could have a dummy workbook that you put in your XLStart folder that
does a Find with the settings you like:
Option Explicit
Sub auto_open()
Worksheets("sheet1").Cells.Find What:="", After:=ActiveCell, _
LookIn:=xlValues, _
LookAt:=xlPart, SearchOrder:=xlByColumns, _
SearchDirection:=xlNext, MatchCase:=False
ThisWorkbook.Close savechanges:=False
End Sub
The workbook opens, does a find (to fix your settings) and then closes to get
out of the way.
If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm