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.
这方面的一个例子是:
NET START | FIND "MSSQLSERVER" > nul
我认为这个命令行没有多大意义,但无论如何:
NET START列出所有正在运行的服务,此命令的输出将发送到该FIND工具,该工具会在给定的输入中搜索字符串“MSSQLSERVER”。如果输入的任何一行与搜索条件匹配,find 会在屏幕上打印这些行,除非在这种情况下,输入被发送到空设备。这是部分:> nul。
NET START
FIND