我想使用批处理文件检查服务是否已安装,如果是,如果正在运行,则根据需要安装或运行,但我不确定如何将它们放在一起。任何帮助深表感谢!
答案 0 :(得分:1)
sc query service_name >nul 2>nul|find /i "running" &&(
echo service is not running
)||(
echo service running
)
sc query service_name >nul 2>nul|find /i "1060" &&(
echo service is not installed
)||(
echo service installed
)