If you had a loading macro in Personal, you could try something like

[VBA]objExcel.Run "Personal.xls!LoadAddIns"[/VBA]

[VBA]
Sub LoadAddIns()
AddIns("Euro Currency Tools").Installed = True
AddIns("Internet Assistant VBA").Installed = True
End Sub

[/VBA]