16

问题是如果这个过程不存在,构建就会失败。我试着写这样的东西

tasklist /nh /fi "imagename eq XDesProc.exe" | find /i "XDesProc.exe" && (
TASKKILL /F /IM "XDesProc.exe"
) || (
echo XAML designer is not running
)

但 ERRORLEVEL 也等于 1,如果 XDesProc.exe 未运行,则 bild 失败。

4

1 回答 1

36

您可以对 PID 使用条件测试来避免这种情况:

  taskkill /f /fi "pid gt 0" /im xdesproc.exe
于 2013-04-01T18:01:52.673 回答