计划任务执行bat
Posted 神奇的旋风
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计划任务执行bat相关的知识,希望对你有一定的参考价值。
@echo off
taskkill /f /t /im ControlKJmen.exe
taskkill /f /t /im KJMen.exe
taskkill /f /t /im DisplayLog.exe
taskkill /f /t /im CatchPackage.exe
set "str=E:\auto tool\ke.qq.com"
start "" "%str%\DisplayLog.exe"
start "" "%str%\run.exe"
记得加上引号,具体还不知道为什么要加
加引号的原因如下:
由于start将第一个双引号中的内容当成标题,所以先要加一对空引号,将文件名放在第二个双引号内,因为路径有空格必须要加双引号,没有的话应该是不用加的
from:https://zhidao.baidu.com/question/518672846701533885.html
from:http://www.bathome.net/thread-15076-1-1.html
以上是关于计划任务执行bat的主要内容,如果未能解决你的问题,请参考以下文章
Windows Server 2008 计划任务配置(任务计划程序)每分钟执行BAT