I'm writing a program to test WIN10 settings automatically .The steps are as below:
1.Restart the computer. 2.Change style of mouse pointer. 3.Screen capture.
I've found there's no mouse pointer after restart computer. Because it must be automation, so I need to create a mouse pointer by program.
I've tried : Setting mouse position without System.Windows.Forms
But it doesn't worked. And I tried :
System.Windows.Forms.Cursor.Position = new System.Drawing.Point(500, 500);
Failed, too. Is there any way to create a mouse pointer?