SharePoint config.xml
This is third in the series – MOSS Scripted Installation.
Before we proceed with the installation, let’s understand the core file to configure for unattended (scripted) installations.
That file is the config.xml .
This installation is in single server mode (basic).
Understanding config.xml
SharePoint Server 2007 includes different Config.xml files for different types of configurations. Each Config.xml file is located in the following folder of the SharePoint Server 2007 installation source, depending on the edition of SharePoint Server 2007 that you have:
•x86\Files\SetupFolderName
•x64\Files\SetupFolderName
The biggest difference between Windows SharePoint Services and Microsoft Office SharePoint Server 2007 config.xml is the package id.
Have a peek inside WSS config.xml and then in MOSS config.xml.
You will notice this difference as under
WSS SetupSilent config.xml
<Configuration>
<Package Id=”sts”>
<Setting Id=”REBOOT” Value=”ReallySuppress”/>
<Setting Id=”SETUPTYPE” Value=”CLEAN_INSTALL”/>
</Package>
<Logging Type=”verbose” Path=”%temp%” Template=”Microsoft Windows SharePoint Services 3.0 Setup(*).log”/>
<Setting Id=”SERVERROLE” Value=”SINGLESERVER”/>
<Setting Id=”UsingUIInstallMode” Value=”0″/>
<Display Level=”none” CompletionNotice=”no” />
</Configuration>
MOSS SetupSilent config.xml
<Configuration>
<Package Id=”sts”>
<Setting Id=”LAUNCHEDFROMSETUPSTS” Value=”Yes”/>
<Setting Id=”REBOOT” Value=”ReallySuppress”/>
<Setting Id=”SETUPTYPE” Value=”CLEAN_INSTALL”/>
</Package>
<Package Id=”spswfe”>
<Setting Id=”SETUPCALLED” Value=”1″/>
<Setting Id=”REBOOT” Value=”ReallySuppress”/>
<Setting Id=”OFFICESERVERPREMIUM” Value=”1″ />
</Package>
<Logging Type=”verbose” Path=”%temp%” Template=”Office Server Setup(*).log”/>
<Display Level=”none” CompletionNotice=”no” />
<PIDKEY Value=”Enter PID Key Here” />
<Setting Id=”SERVERROLE” Value=”SINGLESERVER”/>
<Setting Id=”USINGUIINSTALLMODE” Value=”0″/>
</Configuration>
Since we have not made any changes to the MOSS config.xml, it will also run the SharePoint Configuration Wizard, since
<Display Level=”none” CompletionNotice=”no” />
If you change this to basic, SharePoint Configuration Wizard won’t run.
If you change this to full, it’s as good as you installing this manually
, so keep it to none.
Next in line – script to install MOSS with SQL Express.
- Yeah I was wondering how to sign up for the Windows Live Hot...
- Hello, I already have the image embedded into the html si...
- make sure you do all line breaks with shift + enter and b...
- after creating a sig with the logo you want, you can open MS...
- What if there is not signature folder, I'm doing this remote...
- Can anyone tell me what to do I need to send attachments tha...
- Hi Bryan Yes this is possible, pls check this blog link ...
- Hi, I'm not able to view flashy images on my incoming/outgo...
- ok tahts great- how can I pay and get this windows live hotm...
- Just what I needed. Thanks!...



Roux Visser’s Blog » Blog Archive » Install MOSS 2007 with SQL Express said,
Wrote on January 30, 2009 @ 12:51 am
[...] this config.xml and replace with your MOSS product key. Leave the rest as [...]
Cesar said,
Wrote on March 18, 2009 @ 9:54 am
You can install the binaries using provide config.xml file for unatended installation copy the file from your DVD to your directory and run
yourdvd\x86\setup /config c:\MOSSscripts\config.xml.