如何查找 exe 文件的可用参数?

发布于 2024-09-03 15:45:31 字数 135 浏览 6 评论 0原文

我有一个接受参数的 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 技术交流群。

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

发布评论

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

评论(1

少女情怀诗 2024-09-10 15:45:31

标准是通过传递问号来查询参数:

c:\>myprogram.exe /?

应用程序将显示可用的命令行参数。但是没有什么可以强迫应用程序开发人员这样做,如果他们没有这样做,那么您能做的最好的事情就是阅读 doco,或者反汇编它并查看应用程序入口点周围的行为。

如果参数未发布,那么您应该将您发现的任何参数视为不稳定且不可靠,并且可能会在开发人员想要更改它们时随时更改。

The standard is to query the parameters by passing a question mark:

c:\>myprogram.exe /?

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.

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