Difference between revisions of "MS Project 2007"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
Line 6: Line 6:
  
 
==Microsoft Project Standard 2007==
 
==Microsoft Project Standard 2007==
 +
<source lang="xml">
 
<?xml version="1.0" encoding="utf-8" ?>
 
<?xml version="1.0" encoding="utf-8" ?>
  
Line 21: Line 22:
  
 
</packages>
 
</packages>
 +
</source>
 
==uninstall.xml==
 
==uninstall.xml==
 +
<source lang="xml">
 
<Configuration Product="PrjStd">  
 
<Configuration Product="PrjStd">  
  
Line 29: Line 32:
  
 
</Configuration>
 
</Configuration>
 +
</source>
 
[[Category:Silent Installers]]
 
[[Category:Silent Installers]]

Revision as of 04:57, 29 April 2010

This is a silent installer and uninstaller for MS Project Standard 2007.

To pre-configure the license key and other variables you need to create a .MSP file. To do this first copy the installation files to your software distribution folders then run setup.exe /admin and make your required modifications. Save this file in the PrjStd.WW folder.

You will also need to create an uninstall.xml file and place this in the same folder.

Microsoft Project Standard 2007

<?xml version="1.0" encoding="utf-8" ?>

<packages>

	<package id="project2007" name="Microsoft Project Standard 2007" revision="1" reboot="false" priority="10" >

		<check type='file' condition='versiongreaterorequal' path='%ProgramFiles%\Microsoft Office\Office12\WINPROJ.EXE' value='12.0.4518.1014' />

		<install cmd='%SOFTWARE%\Project2007\setup.exe /adminfile "project2007.MSP" /config "PrjStd.WW\config.xml" ' />

		<remove cmd='%SOFTWARE%\Project2007\setup.exe /uninstall PrjStd /config PrjStd.WW\uninstall.xml' /><br>

	</package>

</packages>

uninstall.xml

<Configuration Product="PrjStd"> 

<Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" /> 

<Setting Id="SETUP_REBOOT" Value="NEVER" /> 

</Configuration>