This is the error that is thrown by our automated build suite at Windows 2008, while running ICEs (after migrating from WiX 2.0 to Wix 3.0):

LGHT0217: Error executing ICE action 'ICE01'. The most common cause of this kind of ICE failure is an incorrectly registered scripting engine. See http://wix.sourceforge.net/faq.html#Error217 for details and how to solve this problem. The following string format was not expected by the external UI message logger: "The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance.". in light.exe(0, 0)

Additionally these are the errors that show up in the event log:

MSIInstaller: Failed to connect to server. Error: 0x80070005 Product: [ProductName] -- Error 1719. The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance.

Intuitively:

  • vbscript and jscript were registered under admin.
  • integration service has permissions for the desktop interaction and all the files
  • builds succeed, when executed manually on the same machine by another user or even user logged in as integration account (via RDP)

I'm out of ideas so far.

Does anybody else happened to encounter and solve this problem while keeping ICE validation?

link|improve this question

57% accept rate
feedback

5 Answers

up vote 6 down vote accepted

End of the story:

after fiddling with the permissions of the integration account, DCOM, service activation etc without any luck I finally simply disabled ICE validation in the continuous integration build, while still keeping it in the local build.

To disable ICE validation you can set SuppressValidation to true in the .wixproj file:

  <PropertyGroup>
    <SuppressValidation>true</SuppressValidation>
  </PropertyGroup>

or pass the -sval command line option to light.exe

link|improve this answer
This was the best answer I could come up with, too. It appears that the account which the build process runs under needs to elevate in order to connect to the Windows Installer Service to run ICEs. I thought about giving the build process admin permissions in order to solve the problem, but figured just disabling it on the CI build is just as much of a problem for now. – codekaizen Jun 13 '10 at 0:25
1  
How did you disable the ICE validation? – bugfixr Jun 21 '11 at 15:05
@Chu, see the additions in the answer – Wimmel Jul 29 '11 at 7:20
Thats not really an answer, rather a, not very good, workaround. – Casper Leon Nielsen Sep 1 '11 at 22:14
feedback

From http://wix.sourceforge.net/faq.html#Error217:

In WiX v3, Light automatically runs validation-- Windows Installer Internal Consistency Evaluators (ICEs) --after every successful build. Validation is a great way to catch common authoring errors that can lead to service problems, which is why it’s now run by default. Unfortunately, there’s a common issue that occurs on Windows Vista and Windows Server 2008 that can cause ICEs to fail. For details on the cause and how to fix it, see Heath Stewart's Blog and Aaron Stebner's WebLog.

link|improve this answer
Did anything in that link actually help you fix this problem? – bwerks Sep 26 '10 at 20:02
2  
That didnt work for me. I have a brand new server with 2008 R2 x64 and the dll's are registered under HKLM not HKCU. – Jonesie Mar 16 '11 at 7:28
feedback

Adding the TFS build controller account to local admin group and restarting the windows service did the job for me.

link|improve this answer
feedback

Well, since it's been so long with no answer, I haven't had this problem, but I have some suggestions.

  • Have you tried updating the Microsoft Installer version on the build server?
  • What version of WiX 3.0 are you running? Try grabbing the newest release, since it's 3.0 release stable now.
  • If all else fails, try running the build service under a specific build user who you can fiddle with permissions for...

Good luck!

link|improve this answer
1. Yes; 2. Latest; 3. I can change permissions of integration account. – Rinat Abdullin Jul 8 '09 at 11:56
Try adding the build user to the DCOM local users group. – Christopher Karper Jul 8 '09 at 13:46
Didn't work that time. I ended up disabling ICE validation in the integration build. – Rinat Abdullin Sep 5 '09 at 12:54
feedback

I know this thread is almost 3 years old, but after quite long research I found the root cause and wanted to share it.

I tried everything I found, including custom validator extension similar to one posted at http://www.mail-archive.com/wix-users@lists.sourceforge.net/msg32947.html

It's not concurrency issue as suggested in various threads. It's caused by too large PEB (Process Environment Block).

Turns out Windows Installer can’t handle process environment block larger than 32kB. In my environment, due to number of variables set by the build system and their size (e.g. PATH variable containing multiple duplicated values), PEB was about 34kB.

Interestingly per http://msdn.microsoft.com/en-us/library/windows/desktop/ms682653(v=vs.85).aspx Windows XP and 2003 had hard limit of PEB set to 32 kilobytes. That would probably cause easy to catch build break in earlier phase of the build. Newer Windows doesn’t have such limit, but I guess that Windows Installer devs limited their internal environment buffers to 32kB and fail gracefully when the value is exceeded.

The problem can be easily reproduced:

  • Create .bat file which sets environment variables which size exceeds 32kB. It can be e.g. 32 lines of set Variable<number>=<text longer than 1024 characters>
  • Launch cmd.exe
  • Execute batch file you created
  • From the same cmd.exe window:
    • try building msi package using WIX with ICE validation on OR
    • run smoke.exe to validate your package OR
    • simply run msiexec /i Package.msi
  • All above commands will end up reporting Error 1719 - Windows Installer could not be accessed

So, the solution is - review your build scripts and reduce number and size of environment variables so they all fit into 32kB. You can easily verify the results by running:

set > environment.txt

The goal is to get environment.txt file smaller than ~30kB.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.