如何查找 exe 文件的可用参数?
我有一个接受参数的 exe 文件。例如,
a.exeparameter1parameter2parameter3
问题是我不确定哪些参数可用。有办法查出来吗?该exe是由Visual C++编译的。
谢谢。
I have an exe file that accpets parameters. For example,
a.exe parameter1 parameter2 parameter3
the problem is that I am not sure what parameters areavailable. Is there a way to find out it? the exe is complied by visual c++.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
标准是通过传递问号来查询参数:
应用程序将显示可用的命令行参数。但是没有什么可以强迫应用程序开发人员这样做,如果他们没有这样做,那么您能做的最好的事情就是阅读 doco,或者反汇编它并查看应用程序入口点周围的行为。
如果参数未发布,那么您应该将您发现的任何参数视为不稳定且不可靠,并且可能会在开发人员想要更改它们时随时更改。
The standard is to query the parameters by passing a question mark:
and the application will display the available command line parameters. But there is nothing to force the application developers to do this, if they haven't then the best you can do is either read the doco, or disassemble it and look at the behaviour around the entry point of the app.
If the parameters are not published, then you should treat any you find as volatile and unreliable, liable to change anytime the developer wants to change them.