我得到运行时错误429,ActiveX错误:无法创建对象'InternetExplorer.Application',同时从vbscript调用以下代码
Set IE = CreateObject("InternetExplorer.Application")
我将代码作为非管理员帐户运行。如果作为管理员运行,代码工作正常。可能是什么问题呢?感谢您的帮助
答案 0 :(得分:0)
尝试使用此代码以管理员身份运行:
If Not WScript.Arguments.Named.Exists("elevate") Then
CreateObject("Shell.Application").ShellExecute WScript.FullName _
, WScript.ScriptFullName & " /elevate", "", "runas", 1
WScript.Quit
End If
Set IE = CreateObject("InternetExplorer.Application")
'Your rest of your code goes here