创建批处理文件以打开IE设置



我希望创建一个简单的批处理文件来自动化Windows中的一些用户操作。

具体来说,打开Internet Options > LAN Settings > Advanced,然后确定和/或退出所有三个窗口。

我不需要更改任何设置 - 只需进入Windows并返回即可。

我很擅长创建批处理文件,正在寻找有关如何最好地解决此问题的一些信息,以及可能的解决方案。 :)

提前谢谢。

尝试使用sendkyes.bat

start "" explorer.exe shell:::{A3DD4F92-658A-410F-84FD-6FBBBEF2FFFE}
w32tm /stripchart /computer:localhost /period:1 /dataonly /samples:2  1>nul
call sendkeys "Internet Properties" "+{tab}{right}{right}{right}{right}{right}{right}"
timeout 3
call sendkeys "Internet Properties" "{enter}"

最新更新