自动关闭Outlook2016的Windows凭据提示

时间:2017-10-21 13:47:14

标签: vbscript outlook autohotkey

尝试使用AutoHotkey关闭此提示, 我正在关闭基于标题的窗口,这意味着任何其他Windows凭据请求也将自动关闭,是否有任何方法可以确定Outlook2016生成此弹出提示,然后脚本才能关闭窗口? / p>

操作系统: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 个答案:

答案 0 :(得分:1)

这应该有效:

WinClose Windows Security ahk_exe outlook.exe