#RequireAdmin
#include <UIAutomate.au3>
Run("taskmgr.exe")
$hWd = WinWaitActive("[CLASS:TaskManagerWindow]")
$oParent = _UIA_GetElementFromHandle($hWd) #создаёт элемент на основе дескриптора окна
$oButton = _UIA_GetControlTypeElement($oParent, "UIA_ButtonControlTypeId", "CBExpandoButtonImage", "AutomationId") #получает элемент с указанием его параметров
_UIA_ElementDoDefaultAction($oButton) #выполняет стандартное действие для найденного элемента