AutomationFocusChangedEventHandler: event dose not triggerd in powershell

176 Views Asked by At

I'm traying to detect focus change using a powershell script, hier is my code

start calc

Write-Host "Loading MS UIA assemblies"
[void][System.Reflection.Assembly]::LoadWithPartialName("UIAutomationClient")
[void][System.Reflection.Assembly]::LoadWithPartialName("UIAutomationTypes")
[void][System.Reflection.Assembly]::LoadWithPartialName("UIAutomationProvider")
[void][System.Reflection.Assembly]::LoadWithPartialName("UIAutomationClientsideProviders")



try
{
    # WORKAROUND: There is a weird bug: first call fails ...
    [Windows.Automation.ClientSettings]::RegisterClientSideProviderAssembly([UIAutomationClientsideProviders.UIAutomationClientSideProviders].Assembly.GetName())
}
catch {}
# ... second call succeeds:
[Windows.Automation.ClientSettings]::RegisterClientSideProviderAssembly([UIAutomationClientsideProviders.UIAutomationClientSideProviders].Assembly.GetName())


$focusedElem = [Windows.Automation.AutomationElement]::FocusedElement #this one work fine


Write-Host "name: " $focusedElem.Current.Name
Write-Host "ControlType: " $focusedElem.Current.ControlType
Write-Host "ProcessId: " $focusedElem.Current.ProcessId

$onFocusChange = { # this dose not fired !!!!
    param([Sytem.Object]$src, [Windows.Automation.AutomationFocusChangedEventArgs]$e)
    start notepad
}

$focusChangeHandler = [Windows.Automation.AutomationFocusChangedEventHandler]($onFocusChange)

[Windows.Automation.Automation]::AddAutomationFocusChangedEventHandler($focusChangeHandler)

Start-Sleep -Seconds 5 #durring this sleep i change the focused window, but nothing happen :(

[Windows.Automation.Automation]:: RemoveAutomationFocusChangedEventHandler($focusChangeHandler)

any idea why this script not working, or any idea how to monitoring focus change in powershell without external tools ?

0

There are 0 best solutions below