![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Hi,
We developed an Outlook 2007 plug-in using VSTO 2005 that generally installs and works fine. However, On one customer machine the "2007 Microsoft Office Primary Interop Assemblies" (PIA) installation fails with a message: "Error 1316. Setup cannot read from file C:\Temp\piaredist.msi. Check your connection to the network, or CD-ROM drive. For other potential solutions to this problem, see SETUP.CHM." We've searched Office CD and MSDN for this file but couldn't find it. I found that others reported this issue in the past but I don't see resolution anywhere. Does anyone know what this error means and how to resolve it? Thanks, Ronnie |
Ads |
#2
|
|||
|
|||
![]()
Is this on Vista? Maybe the user needs to right-click on the installer and
run with admin rights. In addition, to install any PIA or a Framework version or the VSTO runtimes you need admin rights anyway. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "Ronnie" wrote in message ... Hi, We developed an Outlook 2007 plug-in using VSTO 2005 that generally installs and works fine. However, On one customer machine the "2007 Microsoft Office Primary Interop Assemblies" (PIA) installation fails with a message: "Error 1316. Setup cannot read from file C:\Temp\piaredist.msi. Check your connection to the network, or CD-ROM drive. For other potential solutions to this problem, see SETUP.CHM." We've searched Office CD and MSDN for this file but couldn't find it. I found that others reported this issue in the past but I don't see resolution anywhere. Does anyone know what this error means and how to resolve it? Thanks, Ronnie |
#3
|
|||
|
|||
![]()
On Dec 6, 12:08 pm, "Ken Slovak - [MVP - Outlook]"
wrote: Is this on Vista? Maybe the user needs to right-click on the installer and run with admin rights. In addition, to install any PIA or a Framework version or the VSTO runtimes you need admin rights anyway. -- Ken Slovak [MVP - Outlook]http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Optionshttp://www.slovaktech.com/products.htm "Ronnie" wrote in message ... Hi, We developed an Outlook 2007 plug-in using VSTO 2005 that generally installs and works fine. However, On one customer machine the "2007 Microsoft Office Primary Interop Assemblies" (PIA) installation fails with a message: "Error 1316. Setup cannot read from file C:\Temp\piaredist.msi. Check your connection to the network, or CD-ROM drive. For other potential solutions to this problem, see SETUP.CHM." We've searched Office CD and MSDN for this file but couldn't find it. I found that others reported this issue in the past but I don't see resolution anywhere. Does anyone know what this error means and how to resolve it? Thanks, Ronnie- Hide quoted text - - Show quoted text - Ken, This is XP SP2. The user is logged in to a domain but has admin privileges on his machine. Thanks, Ronnie |
#4
|
|||
|
|||
![]()
I googled on that error message and all the information seems to indicate
that error usually occurs when a previous installation of the same package was previously performed. I'd look up the various suggestions on that error and also see if the PIA is already installed there. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "Ronnie" wrote in message ... snip Ken, This is XP SP2. The user is logged in to a domain but has admin privileges on his machine. Thanks, Ronnie |
#5
|
|||
|
|||
![]()
On Dec 6, 1:07 pm, "Ken Slovak - [MVP - Outlook]"
wrote: I googled on that error message and all the information seems to indicate that error usually occurs when a previous installation of the same package was previously performed. I'd look up the various suggestions on that error and also see if the PIA is already installed there. -- Ken Slovak [MVP - Outlook]http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Optionshttp://www.slovaktech.com/products.htm "Ronnie" wrote in message ... snip Ken, This is XP SP2. The user is logged in to a domain but has admin privileges on his machine. Thanks, Ronnie- Hide quoted text - - Show quoted text - Ken, You're right. There is a previous installation of PIA. It seemd to have been installed as part of Office 2007 Small Business (at least on the same date). For some reason, the installer does not detect the previous installation and tries to install on top of it (they have the same verison number). The install.log file says that PIA is not installed. Should we just skip PIA installation and just install VSTO 2005 SE runtime? Thanks, Ronnie |
#6
|
|||
|
|||
![]()
In this case you can skip installing the PIA or ignore the installer error
but that leaves you open in other cases to not having the PIA installed at all in which case your code would roll over dead. For Outlook 2007 the rule is that if the Framework is already installed when Office is installed the PIAs are automatically installed, otherwise it's an option in the installation. So Vista installations which have Framework 3.0 installed by default automatically install the PIAs, WinXP less so. Have you reviewed the installation and deployment instructions for VSTO 2005 SE starting at http://msdn2.microsoft.com/en-us/library/bb332051.aspx ? You really need prerequisite checks and bootstrapper checks for previous installation of not only the PIAs but also the Framework, the VSTO runtime and the VSTO language pack if you want error messages in languages other than English. The same applies to any other requirements or prerequisites you might have for your project. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "Ronnie" wrote in message ... snip Ken, You're right. There is a previous installation of PIA. It seemd to have been installed as part of Office 2007 Small Business (at least on the same date). For some reason, the installer does not detect the previous installation and tries to install on top of it (they have the same verison number). The install.log file says that PIA is not installed. Should we just skip PIA installation and just install VSTO 2005 SE runtime? Thanks, Ronnie |
#7
|
|||
|
|||
![]()
On Dec 6, 1:46 pm, "Ken Slovak - [MVP - Outlook]"
wrote: In this case you can skip installing the PIA or ignore the installer error but that leaves you open in other cases to not having the PIA installed at all in which case your code would roll over dead. For Outlook 2007 the rule is that if the Framework is already installed when Office is installed the PIAs are automatically installed, otherwise it's an option in the installation. So Vista installations which have Framework 3.0 installed by default automatically install the PIAs, WinXP less so. Have you reviewed the installation and deployment instructions for VSTO 2005 SE starting athttp://msdn2.microsoft.com/en-us/library/bb332051.aspx? You really need prerequisite checks and bootstrapper checks for previous installation of not only the PIAs but also the Framework, the VSTO runtime and the VSTO language pack if you want error messages in languages other than English. The same applies to any other requirements or prerequisites you might have for your project. -- Ken Slovak [MVP - Outlook]http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Optionshttp://www.slovaktech.com/products.htm "Ronnie" wrote in message ... snip Ken, You're right. There is a previous installation of PIA. It seemd to have been installed as part of Office 2007 Small Business (at least on the same date). For some reason, the installer does not detect the previous installation and tries to install on top of it (they have the same verison number). The install.log file says that PIA is not installed. Should we just skip PIA installation and just install VSTO 2005 SE runtime? Thanks, Ronnie- Hide quoted text - - Show quoted text - Thanks Ken. I'll review the documentation. I've tried to manually run VSTO SE runtime installation, but it complained about not being able to find installed version of Office. Is Office Small business not enough as a prerequisite ? Thanks, Ronnie |
#8
|
|||
|
|||
![]()
Any SKU of Outlook 2007 should be OK, for Outlook 2003 you need Office 2003
Professional or higher. Read the deployment articles, there's a lot there so make sure you follow each step very carefully. The first custom action is entered all on one line with a space separating each line in the article, not a newline. Also look at the deployment information at http://www.outlookcode.com/article.aspx?ID=42 for information about the latest VSTO runtime and deployment on Vista and for all users. For Outlook 2003 you also need to deploy KB908002 (http://support.microsoft.com/kb/908002), for Outlook 2007 you only need to deploy that when Framework 2.0 is deployed after Office is installed. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "Ronnie" wrote in message ... snip Thanks Ken. I'll review the documentation. I've tried to manually run VSTO SE runtime installation, but it complained about not being able to find installed version of Office. Is Office Small business not enough as a prerequisite ? Thanks, Ronnie |
#9
|
|||
|
|||
![]()
On Dec 6, 3:11 pm, "Ken Slovak - [MVP - Outlook]"
wrote: Any SKU of Outlook 2007 should be OK, for Outlook 2003 you need Office 2003 Professional or higher. Read the deployment articles, there's a lot there so make sure you follow each step very carefully. The first custom action is entered all on one line with a space separating each line in the article, not a newline. Also look at the deployment information athttp://www.outlookcode.com/article.aspx?ID=42for information about the latest VSTO runtime and deployment on Vista and for all users. For Outlook 2003 you also need to deploy KB908002 (http://support.microsoft.com/kb/908002), for Outlook 2007 you only need to deploy that when Framework 2.0 is deployed after Office is installed. -- Ken Slovak [MVP - Outlook]http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Optionshttp://www.slovaktech.com/products.htm "Ronnie" wrote in message ... snip Thanks Ken. I'll review the documentation. I've tried to manually run VSTO SE runtime installation, but it complained about not being able to find installed version of Office. Is Office Small business not enough as a prerequisite ? Thanks, Ronnie- Hide quoted text - - Show quoted text - Thanks a lot Ken. Ronnie |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
error sku112.cab when installing oulook 07 error message 1311 | Boomer | Outlook - Installation | 0 | June 27th 07 02:34 AM |
When installing OE 6.0 I get the following error message. | sbfh | Outlook Express | 9 | December 30th 06 09:16 PM |
Installing Live Local and getting an error | cvmark84 | Add-ins for Outlook | 0 | August 31st 06 10:09 PM |
Error when Installing OL2003 | JC HARRIS | Outlook - General Queries | 1 | August 31st 06 08:27 PM |
Desktop Search 3 Error installing? | Peter R Hawkes | Outlook - Installation | 0 | June 19th 06 10:51 AM |