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.
- I am sure it can be done! :) I am a no code guy ;)...
- Can this be done with code?; For example when the webpart is...
- Fab 40 for MOSS 2010 are now available http://microsofttec...
- i was try to remove site with "Remove-SPSite http://....." ...
- I am unable to do this in Outlook2007 :( .. I have tried eve...
- Hi, I need to ask something that regard the lookup field for...
- how do I download windows live hotmail plus to gain more MB'...
- What I did was to extend the webapplication to port 80 inste...
- I have a question... If i extend the web application to the ...
- in part 11 when i submit the info i get the error "The va...








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.