View difference between Paste ID: TmLLWj1m and D9QGznEe
SHOW: | | - or go back to the newest paste.
1
TITLE Outlook 2007/2010 settings importer
2
3-
:: This script imports a .xml file containing email configuration data into the registry hive so Outlook can parse it during account setup.
3+
:: This script adds an .xml file to the Outlook autodiscovery directory so that when a user creates an account they do not have to enter server settings.
4
:: This script has to be run on startup so it has system privledges, or it won't work.
5
6
:: First, we need to copy the .xml file to the appropriate directory.
7
8
robocopy "\\server\path\to\xml"  "C:\Program Files\Microsoft Office\Office14\OutlookAutoDiscover"
9
10
:: Second, we need to tell Outlook where this file is located.
11
12
REG ADD "HKCU\Software\Microsoft\Office\14.0\Outlook\AutoDiscover" /v <YOURDOMAIN.LOCAL> /t REG_SZ /d "C:\PROGRA~1\MICROS~2\Office14\OUTLOO~1\<XMLFILE>.XML" /f
13
14
:: Now, when a user opens Outlook for the first time and enters their details, no futher configuration should be required.
15
16
exit