I'll help you develop a feature related to PsMinISession.exe . First, let me clarify what this executable typically is:
private const string EventSource = "PandaSecurityMonitor"; private const string EventLogName = "Application"; public void LogSecurityEvent(string message, EventLogEntryType type) Psminitsession.exe
if (!EventLog.SourceExists(EventSource)) EventLog.CreateEventSource(EventSource, EventLogName); using (var eventLog = new EventLog(EventLogName)) eventLog.Source = EventSource; eventLog.WriteEntry(message, type, 1001); I'll help you develop a feature related to PsMinISession
public class PandaSessionMonitor
private const string ProcessName = "PsMinISession"; private const string EventLogName = "Application"