I have created a program (C# dotnet) which update the different properties (like path Variables) of my MSI (Installshield 2009) project by using ISWiAuto18.ISWiProject like
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
}
}
But Now I am unable to find a way to Update My Registry key values of Installshield project using the ISWiAuto18.ISWiProject ? Is there a way to Update Registry values?