如何使用-fips或<FipsCompliant> true </FipsCompliant>强制执行Candle.exe FIPS?

时间:2019-06-05 20:32:49

标签: wix

我们的系统要求启用FIPS组策略。尝试解决以下错误时:

candle.exe(0,0): error CNDL0308: The Federal Information Processing Standard (FIPS) appears to be enabled on the machine. You must either disable FIPS or use FIPS-compliant security algorithms to generate IDs by passing the -fips command-line switch or by setting true in your .wixproj project.

我应该在哪里使用-fips参数,或者应该如何在wixproj文件中使用true标签?

1 个答案:

答案 0 :(得分:0)

FipsCompliant属性作为true添加到您的.wixproj。例如,

<PropertyGroup>
  <FipsCompliant>true</FipsCompliant>
</PropertyGroup>
相关问题