I know there are three ways you can setup Outlook 2003 without doing it manually. I know you can create a transform (MST) file, create a custom maintenance wizard (CMW) file, or create a profile (PRF) file. At my site Office 2003 is already installed so the MST won't help me. I created a CMW file but when you run this it will actually remove the Outlook Address Book losing the user's contacts. I don't want to have to manually install Outlook Address Book each time because that just defeats the purpose. So I've create a PRF file which will set all the settings and get the Outlook Address Book back. The problem is every time it is run it has to open Outlook. I've created a script so that it will only run once. Again the drawback to that is if I have a different user login to this machine they will not have their Outlook configured. Is there a better or easier way to do this? I wish I could use Outlook 2007 AutoDiscovery at this point. My script is below. Thanks in advance.
IF EXIST C:\OUTLOOKSTD.LOG GOTO END
\\Server\Shared\MaintWiz.exe /c \\Server\Shared\Office2003STD.CMW /qb-
ECHO Outlook configured on %computername% for user %username% at %date% %time% >> C:\OUTLOOKSTD.LOG
:END