Windows“启动/b”命令问题
我想在后台运行 Tshark.exe。请你告诉我这个命令有什么问题。
start /b "c:\Program Files\Wireshark\tshark.exe" -i 1 -w file1.pcap
这个 cmd 给我这个错误“Windows 找不到 '-i'......”
I want to run the Tshark.exe in a background. Please can you tell me what is the problem in this command.
start /b "c:\Program Files\Wireshark\tshark.exe" -i 1 -w file1.pcap
This cmd is giving me this error "Windows can not find '-i'......)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
start
将用双引号括起来的第一个字符串解释为它应创建的窗口的标题。更新:
在@Ray Toal 发表评论后,我尝试了一些组合:
start
interprets the first string enclosed in double quotes as the title of the window it should create.Update:
After @Ray Toal's comments I tried some combinations:
我也解决了这个问题,我发现当使用“start /b”时你不能使用完整路径
exe 来运行。您只能%PATH% 或将exe 复制到当前路径。
i counter this problem also,and i found when use "start /b" you cannot use full path
exe to run.you only can you %PATH% or copy the exe to current path.