Windows中文件执行的逐步说明
当程序在 Windows 中执行时,在低级别(逐步)会发生什么。换句话说,从单击文件到实际执行的过程。
您是否知道任何可能深入涵盖该主题的资源?
What happens, at low-level (stepwise) when a program is executed in windows. In other words the processes that take place from clicking a file to actually reaching execution.
Are you aware of any resources that might cover this topic in-depth?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议阅读这篇关于 Win32 可移植可执行文件的两部分 MSDN 文章文件格式。它描述了文件的所有不同部分,为您提供了有关加载和运行可执行文件所需执行的操作的大量信息。
关于 PE 格式的维基百科页面也包含有用的信息。
I'd suggest reading this two part MSDN article on the Win32 Portable Executable file format. It describes all the different parts of the file which gives you a lot of information about what has to happen in order to load and run the executable file.
The Wikipedia page on the PE format also contains useful info.