2017-10-21 249 views
1

試圖使用AutoHotkey關閉此提示,因爲它出現, 我關閉基於標題的窗口,這意味着任何其他Windows憑據請求也會自動關閉,有沒有我可以識別Outlook2016生成此彈出提示的方式,只有腳本可以關閉窗口?自動關閉Windows憑據提示Outlook2016

操作系統:Windows 10

腳本:

#NoEnv 
#Persistent 
SetTimer, ClosePopup, 250 
return 

ClosePopup: 
WinClose, Windows Security 
return 

我也嘗試VBS,但2的問題,我也不能讓相信這提示是從Outlook,第二個是腳本不會循環

Set wshShell = CreateObject("WScript.Shell") 

Do 
    ret = wshShell.AppActivate("Windows Security") 
    If ret = True Then 
     wshShell.SendKeys "%{F4}" 'ALT F4 
     Exit Do 
    End If 
    WScript.Sleep 500 
Loop 

回答

1

這應該工作:

WinClose Windows Security ahk_exe outlook.exe