Here is C# Code that will capture DEBUGSTRING output from TCC.EXE
I compiled this on my Windows 10 system with the following;
Read more
I compiled this on my Windows 10 system with the following;
Code:
csc /nologo /platform:x64 /out:TccDebugListener.exe TccDebugListener.cs
Code:
using System;
using System.Diagnostics;
using System.IO.MemoryMappedFiles;
using System.Runtime.InteropServices;
using System.Text;
class Program
{
[DllImport("kernel32.dll", SetLastError = true)]
static extern IntPtr CreateEvent(IntPtr lpEventAttributes...
Read more





