question

AlinNitan-8693 avatar image
0 Votes"
AlinNitan-8693 asked

Multidigimon parameters

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!

dotnet-csharpwindows-10-application-compatibility
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

0 Answers