WiX 3.0 throws error 217, while being executed by continuous integration

前端 未结 12 1512
醉酒成梦
醉酒成梦 2020-12-07 14:23

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

LGHT0217:

12条回答
  •  有刺的猬
    2020-12-07 15:18

    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:

        
            true
        
    

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

提交回复
热议问题