gpt4 book ai didi

wix - 使用 wix 根据系统区域设置设置注册表的自定义操作

转载 作者:行者123 更新时间:2023-12-01 13:47:21 26 4
gpt4 key购买 nike

有没有办法根据系统区域设置注册表?例如,无论系统区域设置如何,我都在创建以下注册表项,并且我只想在系统操作系统为阿拉伯语和希伯来语时创建此条目。请提出建议。

<Component Id="HelpViewer_Browser_Emulation" Guid="*">           
<RegistryValue Root="HKLM" Id="HelpViewer_Browser_Emulation" Key="SOFTWARE\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION"KeyPath="yes" Type="integer" Value="10001" Name="myapp.exe"/></Component>

最佳答案

我已通过添加此条件解决此问题。

<Property Id="REGIONLANG">
<RegistrySearch Id="REGIONLANG_VAL"
Root="HKCU"
Key="Control Panel\International"
Name="sLanguage"
Type="raw" />
</Property>
<Component Id="HelpViewer_Browser_Emulation" Guid="*" >
<Condition>
<![CDATA[REGIONLANG = "ARA"]]>
</Condition>
<RegistryValue Root="HKLM" Id="HelpViewer_Browser_Emulation" Key="SOFTWARE\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION" KeyPath="yes" Type="integer" Value="10001" Name="myapp.exe"/>
</Component>

关于wix - 使用 wix 根据系统区域设置设置注册表的自定义操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34923337/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com