腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
文章
问答
(3752)
视频
沙龙
2
回答
无法使用iexplore.exe作为
外壳
在Windows Kiosk计算机上运行VBScript
windows
、
internet-explorer
、
vbscript
如果
Internet
Explorer
处于关闭状态,脚本将打开它。在将
explorer
.exe设置为
外壳
的情况下,该脚本工作得很好,但不能将iexplore.exe设置为
外壳
。有人能告诉我为什么吗?ie=1 Set WshShell =
WScript
.CreateObject("
WScript
.Shell") ie = WshShell.Run("iexplore.exe/", 3, tr
浏览 0
提问于2015-06-25
得票数 0
2
回答
如何在用户桌面上创建计算机快捷方式
windows
、
vbscript
、
shortcut
、
wsh
、
special-folders
有人知道如何通过VBScript
启用
它吗?IE快捷代码: 'Create Shortcut for IE on desktop Set objShortCut = objShell.CreateShortcut(usersDesktop & &q
浏览 9
提问于2016-05-11
得票数 5
回答已采纳
2
回答
我想通过vb.net代码或任何exe将IE设置为Windows10中的默认浏览器。我已经使用了下面的VBS脚本。但是它不起作用。
vbscript
、
exe
Set WshShell =
WScript
.CreateObject("
WScript
.Shell") WshShell.AppActivateWshShell.Sen
浏览 0
提问于2017-05-18
得票数 0
1
回答
如何在不同的证书下运行IE?
internet-explorer
、
vbscript
、
command-prompt
、
qtp
对于自动测试,我们想使用一个VBScript,它启动一个
internet
explorer
实例并使用不同的凭证。我们想对VBScript做同样的事情:set oShell=
Wscript
.CreateObject("
WScript
.Shell") oShell.Run "RunAs /profile/user:[TheUser] ""C:\Program Files\
Internet
Explorer<
浏览 0
提问于2014-08-22
得票数 0
1
回答
如何将
Internet
Explorer
设置为PowerShell的默认web浏览器?
powershell
、
vbscript
我有一个使
Internet
Explorer
成为默认web浏览器的VBScript。Set WshShell =
WScript
.CreateObject("
WScript
.Shell")
WScript
.Sleep 1200
WScript
.Sleep 1200 WshShell
浏览 0
提问于2017-08-08
得票数 0
1
回答
创建带有RunAs参数的桌面快捷方式的VBS
vbscript
、
windows-7-x64
、
runas
操作系统: Win7 x64%windir%\system32\runas.exe /u:Domain\Username "%ProgramFiles%\
Internet
Explorer
\iexplore.exe"set WshShell =
WScript
.CreateObject("
WScript
.Shell") strDesktop = WshShell.SpecialFolders
Explorer</
浏览 2
提问于2017-02-17
得票数 1
6
回答
vbscript字符串中的引号导致wsh无效的url错误
vbscript
、
wsh
我试图让下面的脚本生成这样的快捷方式: strDesktop = WshShell.SpecialFolders("Desktop")oUrlLin
浏览 13
提问于2009-03-17
得票数 1
回答已采纳
3
回答
VB script +打开file.html,自动执行“允许拦截内容”
vbscript
、
wsh
当我通过MyShell = CreateObject("
WScript
.Shell")打开file.html时,我还需要
启用
“允许阻止内容”。
浏览 0
提问于2010-08-09
得票数 0
回答已采纳
1
回答
VBScript:关闭windows资源管理器时停止脚本
vba
、
vbscript
Dim i
Wscript
.Sleep 40000
Wscript
.Sleep 40000
浏览 9
提问于2016-07-28
得票数 1
2
回答
允许javascript在windows窗体web浏览器上运行。
c#
、
javascript
、
webbrowser-control
、
windows-forms-designer
我知道Web浏览器是当前安装的
Internet
Explorer
版本的包装程序。但是,在
Internet
Explorer
上测试网站不会产生错误,但如果我使用Web浏览器访问内容,则不起作用。我还查看了我的互联网安全设置,以确保它
已
启用
。
浏览 1
提问于2014-08-05
得票数 20
回答已采纳
1
回答
脚本打开
Internet
Explorer
的无限实例,而不设置活动窗口
vbscript
、
sendkeys
、
active-window
应该定向到
Internet
Explorer
的击键被发送到任何处于活动状态的按键。本应使其成为活动窗口的代码行不起作用:WshShell.AppActivate "
Internet
Explorer
"我相信下面这一节就是导致问题的原因。任何帮助都是非常感谢的!WshShell set WshShell = createobject("
Wscr
浏览 38
提问于2020-05-12
得票数 0
1
回答
特定应用程序的SendKey
windows
、
batch-file
、
browser
、
scheduled-tasks
、
monitoring
我的要求是自动切换
Internet
的多个选项卡。在查看了web和堆栈溢出之后,我建议附带一个解决方案.vbs文件,如-while 1WshShell.AppActivate "
Internet
Explorer
" WshShell.SendKeys("^{TAB}")
浏览 5
提问于2017-04-24
得票数 0
回答已采纳
1
回答
如何测试用户安全设置是否会导致window.localStorage在
Internet
Explorer
中无法工作?
security
、
internet-explorer
、
dom
、
local-storage
在
Internet
Explorer
中,如果用户在
Internet
域的“安全”选项卡上选中了保护模式,则window.localStorage.setItem()将静默失败。是否有特定于Microsoft的方法来测试该功能是否
已
启用
?仅测试它的存在就会返回true。
浏览 0
提问于2014-12-03
得票数 1
2
回答
在打开的浏览器中更改URL的批处理文件
internet-explorer
、
batch-file
我见过这样的情况:但这只会打开一个新的选项卡
浏览 2
提问于2014-04-30
得票数 1
1
回答
从命令行不可见地打开ie
batch-file
、
command-line
、
cmd
我正在尝试打开
internet
explorer
隐形模糊的命令行。页面我将打开日志用户数据为我们的软件。这就是为什么我想让它看不见,页面上的人没有任何必要。
浏览 1
提问于2014-10-19
得票数 0
1
回答
如何使用html/javascript自动最大化chrome窗口?
javascript
、
html
此示例在MS
explorer
中运行良好: 但它不能在Chrome上运行。怎样做才能兼容Chrome?
浏览 1
提问于2014-06-22
得票数 0
1
回答
vbscript文件存在错误
vbscript
如下所示:无成功filespec = "C:\Users\xyz\AppData\Roaming\Microsoft\Windows\Start Menu\Programs"&"\
Internet
Explorer
.lnk" filespec1 = char(34)&"C:\Users\xyz\AppData\Roaming\Microsoft\Windows\Start Menu\Programs"&"\
Internet
<e
浏览 2
提问于2012-08-16
得票数 0
1
回答
在web上进行身份验证时,如何将凭据传递给"Windows安全“?
authentication
、
credentials
我需要编写一个脚本,将用户名和密码传递给windows安全身份验证弹出窗口。这是测试其他凭据所必需的,因为我不想使用自己的凭据。
浏览 1
提问于2014-04-16
得票数 0
1
回答
要在浏览器选项卡之间切换的批处理文件
windows
、
batch-file
、
browser
、
scheduled-tasks
、
monitoring
我在一个屏幕上有两个运行监控应用程序的浏览器选项卡。我想自动切换选项卡后,让我们假设每2分钟。我认为这可以通过在windows中创建一个每2分钟执行一次批处理文件的计划任务来实现。批处理文件将切换选项卡。我需要帮助创建这样的批处理文件。谢谢。
浏览 2
提问于2013-12-18
得票数 0
点击加载更多
热门
标签
更多标签
云服务器
ICP备案
对象存储
实时音视频
云点播
活动推荐
运营活动
广告
关闭
领券