gpt4 book ai didi

windows - 使用批处理文件打开 Internet 选项,打开连接选项卡,按确定

转载 作者:可可西里 更新时间:2023-11-01 11:18:18 25 4
gpt4 key购买 nike

这适用于 Windows 7 计算机

我正在运行一个批处理文件 (.bat) 并希望将其配置为打开 Internet 选项并按“连接”选项卡,然后按“确定”。

到目前为止,我得到了以下内容,它打开了 Internet 选项:

inetcpl.cpl

我一直在尝试关注投票最多的答案 at this link要做到这一点,请使用以下内容,但它不起作用,甚至无法打开 Internet 选项:

Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run inetcpl.cpl

最佳答案

将其保存为 .bat :

@if (@X)==(@Y) @end /* JScript comment
@echo off

cscript //E:JScript //nologo "%~f0"

exit /b %errorlevel%
@if (@X)==(@Y) @end JScript comment */


var WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run("control inetcpl.cpl");
WshShell.AppActivate("Internet Properties");

WScript.Sleep(100);
WshShell.SendKeys("+{TAB}");
WScript.Sleep(100);

WScript.Echo("RIGHT keys.....");
WshShell.SendKeys("{RIGHT}");
WScript.Sleep(100);
WshShell.SendKeys("{RIGHT}");
WScript.Sleep(100);
WshShell.SendKeys("{RIGHT}");
WScript.Sleep(100);
WshShell.SendKeys("{RIGHT}");
WScript.Sleep(100);
//WshShell.SendKeys("{RIGHT}");

WshShell.SendKeys("{TAB}");
WScript.Sleep(100);
WshShell.SendKeys("{TAB}");
WScript.Sleep(100);
WshShell.SendKeys("{TAB}");
WScript.Sleep(100);
WshShell.SendKeys("{TAB}");
WScript.Sleep(100);
WshShell.SendKeys("{TAB}");
WScript.Sleep(100);
WshShell.SendKeys("{TAB}");
WScript.Sleep(100);
WshShell.SendKeys("{ENTER}");

关于windows - 使用批处理文件打开 Internet 选项,打开连接选项卡,按确定,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27020552/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com