Windows“启动/b”命令问题

发布于 2024-11-26 06:46:58 字数 181 浏览 1 评论 0原文

我想在后台运行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

千年*琉璃梦 2024-12-03 06:46:58
start /b "Window Title" "c:\Program Files\Wireshark\tshark.exe" -i 1 -w file1.pcap

start 将用双引号括起来的第一个字符串解释为它应创建的窗口的标题。

更新

在@Ray Toal 发表评论后,我尝试了一些组合:

L:\>start /b "L:\tools\scjview.exe" -i
The system cannot find the file -i.

L:\>start /b "test" "L:\tools\scjview.exe" -i
L:\>
start /b "Window Title" "c:\Program Files\Wireshark\tshark.exe" -i 1 -w file1.pcap

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:

L:\>start /b "L:\tools\scjview.exe" -i
The system cannot find the file -i.

L:\>start /b "test" "L:\tools\scjview.exe" -i
L:\>
怪我太投入 2024-12-03 06:46:58
start /b "" "c:\Program Files\Wireshark\tshark.exe" -i 1 -w file1.pcap
start /b "" "c:\Program Files\Wireshark\tshark.exe" -i 1 -w file1.pcap
迷离° 2024-12-03 06:46:58
set PATH=%PATH%;c:\Program Files\Wireshark\
start /B tshark -f -i 1 -w file1.pcap
set PATH=%PATH%;c:\Program Files\Wireshark\
start /B tshark -f -i 1 -w file1.pcap
君勿笑 2024-12-03 06:46:58

我也解决了这个问题,我发现当使用“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文