我创建了一个程序(C# dotnet),它使用 ISWiAuto18.ISWiProject 更新我的 MSI(Installshield 2009)项目的不同属性(如路径变量)
for (int count = 1; count <= m_ISWiProj.ISWiPathVariables.Count; count++)
{
if (m_ISWiProj.ISWiPathVariables[count].Name == pathVar)
{
m_ISWiProj.ISWiPathVariables[count].Value = pathvarvalue;
m_ISWiProj.IswiAutoUpgradeEntries
}
}
但是现在我无法找到使用 ISWiAuto18.ISWiProject 更新 Installshield 项目的我的注册表项值的方法?有没有办法更新注册表值?