Hello,
I'm working for a C# project that uses Windows10 and Touchscreens.
I found out that i need to run MultiDigiMon.exe for setting up the touchscreen, before calibration.
Can I set by default what screen to select after / during running MultiDigimon.exe? (I cannot press the display manually in order to select it because installation runs remotely on hundreds of machines)
a bit of code:
private static void SetupMonitor()
{
//Process.Start(@"C:\Windows\System32\MultiDigiMon.exe", "-touch");
var proc = new Process();
proc.StartInfo.FileName = "MultiDigiMon.exe";
proc.StartInfo.Arguments = "-touch";
proc.Start();
}
Thank you!