{"id":703,"date":"2009-07-31T02:48:00","date_gmt":"2009-07-31T02:48:00","guid":{"rendered":"https:\/\/blogs.msdn.microsoft.com\/heaths\/2009\/07\/31\/trouble-installing-other-products-after-visual-studio\/"},"modified":"2019-02-17T15:29:49","modified_gmt":"2019-02-17T22:29:49","slug":"trouble-installing-other-products-after-visual-studio","status":"publish","type":"post","link":"https:\/\/devblogs.microsoft.com\/setup\/trouble-installing-other-products-after-visual-studio\/","title":{"rendered":"Trouble installing other products after Visual Studio"},"content":{"rendered":"<p>Customers have commented that whenever they try to install other products or patches they continually see the following message,<\/p>\n<blockquote>\n<p>Another installation is in progress. You must complete that installation before continuing this one.<\/p>\n<\/blockquote>\n<p>Customers may also see instances of msiexec.exe or msiexec.exe*32 appear continuously in Task Manager or other process monitoring software.<\/p>\n<p>This may occur after installing either Visual Studio 2008 or Visual Studio 2010 Beta 1. If you look in your Application event log as described below, for the MsiInstaller source you may see a message like either of the following,<\/p>\n<blockquote>\n<p>Detection of product &#8216;{AA4A4B2C-0465-3CF8-BA76-27A027D8ACAB}&#8217;, feature &#8216;VSTA_IDE_12590_x86_enu&#8217;, component &#8216;{FF4A39EF-8F8B-4557-9F81-50DC44C6D30A}&#8217; failed.&nbsp; The resource &#8216;c:\\Program Files (x86)\\Microsoft Visual Studio 9.0\\Common7\\IDE\\PublicAssemblies\\en\\&#8217; does not exist.<\/p>\n<\/blockquote>\n<p>Or,<\/p>\n<blockquote>\n<p>Detection of product &#8216;{874D5E2B-AACE-303A-B3EC-2563E071473E}&#8217;, feature &#8216;VS_IDE_657_x86_enu&#8217;, component &#8216;{A5854250-7B92-4A50-935F-6A486589F87D}&#8217; failed.&nbsp; The resource &#8216;d:\\Program Files\\Microsoft Visual Studio 10.0\\Common7\\IDE\\PublicAssemblies\\en\\&#8217; does not exist.<\/p>\n<\/blockquote>\n<p>In either case, some of the quoted values may be different but the path may still reference \u201cMicrosoft Visual Studio 10.0\\Common7\\IDE\\PublicAssemblies\\en\u201d.<\/p>\n<h3>How to work around this issue<\/h3>\n<p>To determine if the issue affecting you is the one described here, you must start the event viewer. This is also necessary to identify the missing resource, if any, that needs to be created.<\/p>\n<ol>\n<li>Click on <b>Start<\/b> <\/li>\n<li>Click on <b>Run<\/b> <\/li>\n<li>Type \u201ceventvwr\u201d (without quotes) and click <b>OK<\/b>. If you are prompted to elevated on Vista or newer, click <b>Continue<\/b>. <\/li>\n<li>Expand <b>Windows Logs<\/b> and click <b>Application<\/b> <\/li>\n<li>Find the recent warning where the Source is MsiInstaller. In Vista and newer,\n<ol>\n<li>Click <b>Filter Current Log\u2026<\/b> in the right action pane <\/li>\n<li>Check <b>Warning<\/b> <\/li>\n<li>Type \u201cMsiInstaller\u201d (without quotes) in the <b>Event sources<\/b> edit control <\/li>\n<li>Type \u201c1004\u201d (without quotes) in the event IDs edit control <\/li>\n<li>Click <b>OK<\/b> <\/li>\n<\/ol>\n<\/li>\n<\/ol>\n<p>I&#8217;ve also attached an event viewer filter you can unzip and import as a custom view.<\/p>\n<p>You should see a message similar to those above, stating stating that a directory like \u201cC:\\Program Files\\Microsoft Visual Studio 10.0\\Common7\\IDE\\PublicAssemblies\\en\\\u201d does not exist. If you do not find such a message, you might search for event ID 1001 as logged during a <a href=\"http:\/\/blogs.msdn.com\/heaths\/archive\/2009\/05\/29\/how-to-workaround-the-issue-when-opening-office-applications-repairs-visual-studio.aspx\">similar event<\/a>.<\/p>\n<p>To work around this particular issue, simply create the directory that is missing.<\/p>\n<h3><\/h3>\n<h3>Description of the issue<\/h3>\n<p>This is another example of the <a href=\"http:\/\/robmensching.com\/blog\/posts\/2007\/3\/12\/RobMens-Recommendation-Do-not-advertise-COM-information-in-MSI\">potential problems when advertising Windows Installer features<\/a>. When COM registration is advertised, serialized data identifying the product feature that provides the COM server is written to the registry. When the class loader reads this value in this format that identifies a Windows Installer product feature, Windows Installer is queried for the component path which starts a <a href=\"http:\/\/msdn.microsoft.com\/library\/aa371230.aspx\">resiliency check<\/a> against the feature.<\/p>\n<p>Because in this case a directory is missing for a component, Windows Installer logs an event and begins a maintenance installation to repair affected features. If you cancel this repair operation the issue will continue to surface. If allowed to continue, you might be prompted for source. However, unlike another example of a <a href=\"http:\/\/blogs.msdn.com\/heaths\/archive\/2009\/05\/29\/how-to-workaround-the-issue-when-opening-office-applications-repairs-visual-studio.aspx\">similar event<\/a>, repairing the product will not resolve the issue.<\/p>\n<p>As described for <a href=\"http:\/\/msdn.microsoft.com\/library\/aa368942.aspx\">ICE18<\/a>, a component that does not have a key path set must declare a related entry in the <a href=\"http:\/\/msdn.microsoft.com\/library\/aa368053.aspx\">CreateFolder<\/a> table. Of course, a versioned file is always preferred as a key path for a component if available, but an unversioned file or registry value will suffice.<\/p>\n<p>So because the component referenced in the event log does not declare a key path nor create the \u201cen\u201d sub-directory, a repair triggered by a resiliency check will always be performed. And because only one Windows Installer transaction can run at a time, other Windows Installer installations are blocked.<\/p>\n<p><a href=\"https:\/\/msdnshared.blob.core.windows.net\/media\/MSDNBlogsFS\/prod.evol.blogs.msdn.com\/CommunityServer.Components.PostAttachments\/00\/09\/85\/42\/83\/Filter.zip\">Filter.zip<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Customers have commented that whenever they try to install other products or patches they continually see the following message, Another installation is in progress. You must complete that installation before continuing this one. Customers may also see instances of msiexec.exe or msiexec.exe*32 appear continuously in Task Manager or other process monitoring software. This may occur [&hellip;]<\/p>\n","protected":false},"author":389,"featured_media":3843,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[20,51,52],"class_list":["post-703","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-installation","tag-vs2008sp1","tag-vs2010"],"acf":[],"blog_post_summary":"<p>Customers have commented that whenever they try to install other products or patches they continually see the following message, Another installation is in progress. You must complete that installation before continuing this one. Customers may also see instances of msiexec.exe or msiexec.exe*32 appear continuously in Task Manager or other process monitoring software. This may occur [&hellip;]<\/p>\n","_links":{"self":[{"href":"https:\/\/devblogs.microsoft.com\/setup\/wp-json\/wp\/v2\/posts\/703","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devblogs.microsoft.com\/setup\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devblogs.microsoft.com\/setup\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/setup\/wp-json\/wp\/v2\/users\/389"}],"replies":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/setup\/wp-json\/wp\/v2\/comments?post=703"}],"version-history":[{"count":0,"href":"https:\/\/devblogs.microsoft.com\/setup\/wp-json\/wp\/v2\/posts\/703\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/setup\/wp-json\/wp\/v2\/media\/3843"}],"wp:attachment":[{"href":"https:\/\/devblogs.microsoft.com\/setup\/wp-json\/wp\/v2\/media?parent=703"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/setup\/wp-json\/wp\/v2\/categories?post=703"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/setup\/wp-json\/wp\/v2\/tags?post=703"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}