I'm having a problem finding the COM + property name so I can change the content of it, by my searches I need to know the correct name of the parameter value so I can change it, in case it is Remote Server Name
COMAdminCatalogCollection applications;
COMAdminCatalog catalog;
catalog = new COMAdminCatalog();
applications = (COMAdminCatalogCollection)catalog.GetCollection("Applications");
applications.Populate();
string x = "Nome Sistema";
dynamic servidor = "Caminho Servidor";
foreach (COMAdminCatalogObject application in applications)
{
if (application.Name == x)
{
application.Value["Nome do parametro que estou atras"] = servidor;
}
}