gpt4 book ai didi

visual-studio - 如何终止 Visual Studio 中预构建步骤中可能不存在的进程?

转载 作者:行者123 更新时间:2023-12-03 21:14:52 25 4
gpt4 key购买 nike

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

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 将失败。

最佳答案

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

  taskkill /f /fi "pid gt 0" /im xdesproc.exe

关于visual-studio - 如何终止 Visual Studio 中预构建步骤中可能不存在的进程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15748355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com