首页 文章

启动和恢复脚本[关闭]

提问于
浏览
-8

我写了一段代码,用Internet Explorer浏览器打开某个文件夹中的所有文件,它只是在标签之间切换 . 但现在我必须应用一些修改:

- user will be able to pick chosen tab to review it and after that the slideshow will be resumed ( by a user -mouse click or some key).

我是批量和vbs写的 . 但是现在我不能应用所需的更改 .

那么是否可以通过单击或点击键来停止和恢复脚本?

1 回答

  • 1

    我不确定你的问题是什么,但我如何通过批量打开Internet Explorer的文件是:

    @echo off
                title Internet Explorer File Opener
                start C:\Program Files\Internet Explorer
                echo Internet Explorer Files Opened!
                pause
                exit
    

相关问题