I'm trying to launch the on screen keyboard with c#. I need it to launch on a 32 bit machine. I'm running win 10. Thus far I've tried
Process.Start(@"%windir%\system32\osk.exe");
Process.Start(@"C:\Users\mxrac\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Accessibilit\osk.exe");
Process.Start("osk.exe");
Each time I get System.ComponentModel.Win32Exception: 'The system cannot find the file specified'
I've tried everything online and can get nothing to work. I know the osk is there because I'm running it I just can't launch it via c#. The machine that this has to run on is a 32 bit industrial PC I cannot configure the machine to run x64.