查找非官方命令行开关
如何找到给定应用程序的命令行参数?我知道您可以使用 /?
并且,如果应用程序支持它,它会显示开关,但是有没有办法在程序中找到“非官方”开关?
How can I go about finding out command line arguments for a given application? I know you can use /?
and, if the app supports it, it'll display the switches, but is there a way to find 'unofficial' ones in a program?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
显然谷歌是最简单的答案......除非......我不认为 / 有任何特殊的替代品?这将为您提供更多选择。您可以尝试针对有问题的可执行文件运行“字符串”。这可能会吐出一些隐藏的选项。大多数(所有?)unix 发行版都附带“strings”,对于 Windows:http://technet .microsoft.com/en-us/sysinternals/bb897439
如果您不熟悉字符串...它只是吐出它可以在可执行文件中找到的每个字符串...它通常对于查找隐藏的东西很有用。
Obviously google is the easiest answer... barring that... I don't think there is any special alternative to /? that will give you additional options. You might try running "strings" against the executable in question. That may spit out some hidden options. "strings" comes with most(all?) unix distributions, for windows: http://technet.microsoft.com/en-us/sysinternals/bb897439
If your not familiar with strings... it just spits out every string it can find inside an executable... it's often useful for finding hidden things.
为了查找静默安装开关,我发现
Universal Silent Switch Finder 1.5.0.0
很有帮助。由于原始版本很旧,我在原始网站上找不到它,但softpedia有下载:http://www.softpedia.com/progDownload/Universal-Silent-Switch-Finder-Download-180984.htmlFor finding silent install switches, I found
Universal Silent Switch Finder 1.5.0.0
to be helpful. Because the original version is very old, I cannot find it on the original website, but softpedia has a download up: http://www.softpedia.com/progDownload/Universal-Silent-Switch-Finder-Download-180984.html