#include "DeviceAPI.au3"
While _DeviceAPI_EnumDevices()
$string = _DeviceAPI_GetDeviceRegistryProperty($SPDRP_DEVICEDESC)
_Test1()
ConsoleWrite($string)
WEnd
Func _Test1()
$Spar1 = "HID-совместимая мышь"
If $string = $Spar1 Then
MsgBox(4096, "", "Мышь подключена")
Else
Sleep (1)
EndIf
EndFunc