ContributionsMost RecentMost LikesSolutionsRe: Log messages listenning in .NET I need all messages in real time - Im transfering them to TeamCity and im checking progress here Re: Log messages listenning in .NET Is it possible to listen messages without using TestLeft? Ihave code like this: private ITestCompleteCOMManager TestCompleteManager; private ItcIntegration IntegrationObject; private object TestCompleteObject; private const string TCProgID = "TestComplete.TestCompleteApplication.14"; public TestCompleteIntegrationObject() { this.InitializeTcObject(); } public void InitializeTcObject() { try { TestCompleteObject = Marshal.GetActiveObject(TCProgID); } catch { try { TestCompleteObject = Activator.CreateInstance(Type.GetTypeFromProgID(TCProgID)); } catch (Exception ex) { Console.WriteLine(ex.Message); Console.WriteLine("Unable to initialize TestComplete."); } } if (TestCompleteObject == null) return; TestCompleteManager = (ITestCompleteCOMManager)TestCompleteObject; IntegrationObject = TestCompleteManager.Integration; } Can i somehow implement messages listening here? Log messages listenning in .NET Hello, i have .NET code that runs TestComplete projects through IntegrationObject, but i need to listen and collect all messages. How can i do that? (All messages, not just test result). Thank you very much! The requested operation requires elevation Hello, im trying to open TestComplete using .NET code but im still getting error "Retrieving the COM class factory for component with CLSID {10C09D22-37CD-496B-BB10-81047C104ADA} failed due to the following error: 800702e4 The requested operation requires elevation. (Exception from HRESULT: 0x800702E4).". Can you help me please? Solved