Office 2007 installation using DS 6.9
Created: 29 Jun 2010 | 8 comments
I have read several articles here and in the KnowlegeBase and I am missing a major part. I have run setup.exe /admin and created my customized .msp in an express share. When I make a Distribute Software task it tells me that it is not an valid Rapidinstall package. So then I tried to do it as a scripted task but didn't know if I could just type that in the script area or if I needed to create a .cmd file to run. Also what is the parameter for the .msp if I wanted to just run the installation manually?
I really have been trying to figure this out.
Thanks.
Jane
Discussion Filed Under:
Comments
All you need to do is put the
All you need to do is put the .msp file in the Updates folder under the Office 2007 folder. Then just create a job that runs setup.exe from the root of the Office 2007 folder.
Ignore when DS tells you that it isn't a valid RapidInstall package cause it isn't a RapidInstall package.
Use Distribute Software or Execute Command
You can either use Distribute Software or simply use Execute Command if the software is accessible to the target machine. If you were in the folder, it would be setup.exe /adminfile Updates, assuming the .MSP is in the Updates folder, so just adjust for the full path to setup.exe. Use quotes if spaces are part of folder names.
Keep in mind that if you run a setup against an .MSP where an installation has already occurred with an .MSP, you will receive an error visible to the user.
Does this help?
Mike Clemson, Senior Systems Engineer
Intuitive Technology Group -- Symantec Platinum Partner
Putting the MSP into the
Putting the MSP into the Updates folder will cause it to be applied every time setup.exe is ran. That can be a bad thing if you create unique MSPs which contain custom settings you only want applied during certain installs.
For example, if you don't always want OneNote installed you would create a "NoOneNote.MSP" with that app excluded. Keeping that MSP outside of the Updates folder allows you the choice on when that gets applied.
As previously mentioned you can just put the following into a Run Script task. (In the Run this script: text box....)
"<Path to setup.exe>" /adminfile "<Path to your .MSP>"
Format for Install Package
We have custom config.xml files for Office installs stored in a separate folder.
For the package, we specify the setup.exe file (which will claim it's an unknown package type since it's not a RapidInstall exe and perfectly normal) then in the "additional command-line switches" section we have the following: /config \\path\to\xmlfiles\config.xml
More details on config.xml: http://technet.microsoft.com/en-us/library/cc179195(office.12).aspx
--Dave
Thanks so much. I will take a
Thanks so much. I will take a look at all those ideas.
jane
So does that mean I could
So does that mean I could have a Run Script package to install an .msi?
Something like :
msiexec /i \\servername\softwaremsi/reader93jf/acroread.msi /t \\servername\softwaremsi/reader93jf/jcpl.mst
Yes, Run Script
Yes, you can use Run Script to execute an .msi with a transform from a UNC path, network drive, or local hard drive. Typically, the Office install is not an .msi, however.
Mike Clemson, Senior Systems Engineer
Intuitive Technology Group -- Symantec Platinum Partner
Your example is strange. Why
Your example is strange. Why have you started talking about adobe installer and using mst files?
The fix for Office would be as stated by "gps4444" above.
Would you like to reply?
Login or Register to post your comment.