@echo off
start G:\Des加密\ZyApplication.exe
choice /c 12 /d 1 /t 10>nul
taskkill /f /im ZyApplication.exe
exit
打开和关闭exe bat脚本
最新推荐文章于 2024-01-17 17:25:15 发布
这是一个关于使用批处理命令启动应用程序、进行用户选择并终止进程的自动化脚本。脚本通过`@echo off`关闭命令回显,启动位于G盘的ZyApplication.exe,接着提供1或2的选择并在10秒内自动选择默认选项1。然后,它使用`taskkill`强制结束ZyApplication.exe进程,最后退出。
280

被折叠的 条评论
为什么被折叠?



