Hello everyone, i have a problem on my scripts to activate the auto install of driver on W10 with autoit. When i open "control.exe", "sysdm.cpl" and i send "Send("^{TAB}")" my PC is doing nothing, like windows 10 don't take Control + Tab, but when i do with my keyboard it works, so i think there is something with the script with W10 ? Here it is the scripts i have :
ProgressSet("3%", "Activation recherche auto pilote sur le net en cours...")
Sleep(200)
ShellExecute("control.exe", "sysdm.cpl")
WinWait("Propriétés système") ;==> Attend la fenêtre
msgbox(1,"test","1")
Send("^{TAB}")
msgbox(1,"test","2")
Sleep(100)
ControlClick("Propriétés système", "", "[ID:2008]") ;==> Envoi un clic
msgbox(1,"test","3")
Sleep(300)
ControlClick("Paramètres d’installation de périphérique", "", "[ID:1082]")
Sleep(100)
ControlClick("Paramètres d’installation de périphérique", "", "[ID:1]")
Sleep(300)
ControlClick("Propriétés système", "", "[ID:1]")
ProgressSet("5%", "Activation recherche auto pilote sur le net terminée...")
Sleep(10000)
All the french in the scripts are just the name of window opened. Thanks for the help.