#include <WinAPI.au3>
Local Const $hwnd = _WinAPI_FindWindow('WeChatMainWndForPC', '微信')
If IsHWnd($hwnd) Then
MsgBox(0,"Return", "The handle is " & $hwnd & @CRLF & "The title is" & _WinAPI_GetWindowText($hwnd))
Else
MsgBox(0, "", "It seem to be some error!")
EndIf