|
|
 |
BOOK: Professional Outlook 2007 Programming ISBN: 978-0-470-04994-5
 | This is the forum to discuss the Wrox book Professional Outlook 2007 Programming by Ken Slovak; ISBN: 9780470049945 |
|
Welcome to the p2p.wrox.com Forums.
You are currently viewing the BOOK: Professional Outlook 2007 Programming ISBN: 978-0-470-04994-5 section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |
|

December 20th, 2007, 01:52 PM
|
|
Wrox Author
|
|
Join Date: Sep 2007
Location: Winter Park, Florida, USA.
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
No idea offhand, but when I do a scripted installation I use msiexec.exe to run it. That's how you usually automate Windows Installer. See http://support.microsoft.com/kb/227091 for a list of msiexec command line switches.
I usually don't use the installer from Visual Studio to build most of my installation packages, I usually use InstallShield for that. With InstallShield I end up with one setup.exe package that includes the addin.msi file. So I don't end up with separate setup.exe and addin.msi files. You can see if setup.exe can be automated using msiexec, if not you can always automate the msi file that's also generated. I believe that eliminates a number of the bootstrap checks done by setup.exe, so that may not work for you.
Ken Slovak
|

December 20th, 2007, 02:15 PM
|
|
Authorized User
|
|
Join Date: Aug 2004
Location: Burbank, CA, USA.
Posts: 93
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Ok Thanks! Since the setup.exe file contains all the packages needed before the installation of the addin can take place such as the .net framework 2.0, the patch for that, VSTO 2005 SE runtime, and the PIA's for Office 2003, I can't just run the .msi file can I? Also, these don't work with the /quiet switch do they?
Thanks again...
Arsi
*******(*)*******
|

December 20th, 2007, 03:17 PM
|
|
Wrox Author
|
|
Join Date: Sep 2007
Location: Winter Park, Florida, USA.
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
If the pre-requisites and requirements are already installed you don't need the setup.exe program, you can just run the MSI file to install the addin. If you might need those pre-requisites and requirements to be installed you would need the setup.exe program or an equivalent.
I'm not sure about automating setup.exe, as I mentioned. I've never tried it and usually use InstallShield myself in most cases, again as mentioned.
You probably can do some searching on the Web about automating installations created by Visual Studio and see what that turns up.
Ken Slovak
|

December 20th, 2007, 03:22 PM
|
|
Authorized User
|
|
Join Date: Aug 2004
Location: Burbank, CA, USA.
Posts: 93
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Okay. Great! Thanks for ALL your help.
Arsi
*******(*)*******
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |