我正在使用以下代码绕过Excel的身份验证,从而绕过此线程从Internet生成某些报告
How to pass authentication credentials in VBA
Dim response As String
With CreateObject("Microsoft.XMLHTTP")
.Open "GET", address, false, username, password
.Send
response = .responseText
End With
Msgbox response
这在带有Excel 2012的Windows 7中有效。当我获得一台名为Excel 10的Win 10的新笔记本电脑时,它会不断弹出窗口以输入用户名和密码,这在前面的代码中已定义。
是否有人知道Win 10 with Excel 2016如何绕过身份验证?谢谢!