Skip to main content

Posts

Showing posts from May, 2023

AutoIT with microsoft teams

Download autoit and install run au4Info_x64.exe go to the microsoft teams meeting chat room, click on the chat room. the autoIT (au4Info_x64.exe)  will capture the window title as "mylastname, myfirstname (BC xxx inc) (You) | Microsoft Teams", get it also in summary tab so that I can copy the title. run SciTE/SciTE.exe, create new file with the content below, replace the windows title with what was captured in the step above.  ; Wait for 5 seconds to open Microsoft Teams, click on the typing message field Sleep(5000) While True ; Loop indefinitely WinWait("mylastname, myfirstname (BC xxx inc) (You) | Microsoft Teams") WinActivate("mylastname, myfirstname (BC xxx inc) (You) | Microsoft Teams") WinWaitActive("mylastname, myfirstname (BC xxx inc) (You) | Microsoft Teams") Send("H ")    Sleep(240000) WEnd SciTE.exe-> tools-> go