Hi misters,
How I can do this in C# ??
Dim installer As Object
installer = CreateObject("W indowsInstaller .Installer")
Dim products As Object = installer.Produ cts
For Each strProductCode As String In products
'Console.WriteL ine(strProductC ode)
Dim strProductName As String =
installer.Produ ctInfo(strProdu ctCode, "InstalledProdu ctName")
If strProductName = "Something" Then
'That's it.
End If
Next
Thanks !!!
--
Comment