Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
不幸的是,SC 命令在 W2000 上还不可用,所以我不能使用它。
我正在尝试检查 W2000 服务器上是否正在运行服务,如果它没有运行,脚本应该能够启动该服务。
如何在 Windows 2000 上执行此操作?
net start | find "yourservice" if %errorlevel%==1 net start "yourservice"