标签: batch-file
所以我一直在创建一个批处理文件,这是一个网站集合,所以当用户选择他想访问的网站时,启动命令用于打开iexplorer.exe。但批处理文件已关闭,然后网站打开。有没有办法阻止它关闭?这是我目前使用的代码:
start iexplorer.exe www.website.com
答案 0 :(得分:0)
这应该可以在批处理文件的末尾添加pause>nul:
pause>nul
start iexplorer.exe www.website.com pause>nul