gpt4 book ai didi

internet-explorer - 如何从批处理文件打开和关闭 Internet Explorer?

转载 作者:行者123 更新时间:2023-12-04 17:18:05 27 4
gpt4 key购买 nike

我有一个批处理文件,必须启动 Internet Explorer 并打开 www.google.com .当整个页面加载完成时,它应该终止 IE 进程,即关闭该系统中的所有 IE 实例。我的批处理文件有以下两行。

iexplore.exe "www.google.com"
taskkill /IM iexplore.exe /F

但加载后它并没有关闭 IE 实例。

如果我有单独的批处理文件,只有一行 taskkill/IM iexplore.exe/F .此批处理文件关闭 IE 实例。

First Batch 文件出了什么问题。

P.S 批处理文件位于程序文件的 Internet Explorer 文件夹中。

最佳答案

我不明白您的目标是立即打开和关闭 Internet Explorer 吗?但这里有一个带有 sleep 的示例,向您展示它是如何工作的!

@echo off
Title Start and Kill Internet Explorer
Mode con cols=75 lines=5 & color 0B
echo(
echo Launching Internet Explorer ...
Start "" "%ProgramFiles%\Internet Explorer\iexplore.exe" "www.google.com"
:: Sleep for 20 seconds
Timeout /T 20 /NoBreak>NUL
echo(
echo Hit any Key to kill all instances of Internet Explorer
Pause>nul
Cls & Color 0C
echo(
echo Killing Internet Explorer Please wait for a while ...
Taskkill /IM "iexplore.exe" /F
pause

如果您想了解更多功能,例如如何启动一个进程以及如何一次终止一个或多个进程,这些进程与用户输入的动态菜单交互,您应该看看这篇文章 ==> How to check and correct user input when he omit the extension .exe to kill the process?

在没有用户输入确认的情况下尝试此替代方法:
@echo off
Title Start and Kill Internet Explorer
Mode con cols=75 lines=5 & color 0B
echo(
echo Launching Internet Explorer ...
Start "" "%ProgramFiles%\Internet Explorer\iexplore.exe" "www.google.com"
:: Sleep for 10 seconds, you can change the SleepTime variable
set SleepTime=10
Timeout /T %SleepTime% /NoBreak>NUL
Cls & Color 0C
echo(
echo Killing Internet Explorer Please wait for a while ...
Taskkill /IM "iexplore.exe" /F

关于internet-explorer - 如何从批处理文件打开和关闭 Internet Explorer?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30885794/

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