windows/cmd 上的可执行文件类型有哪些?他们的优先事项是什么?
例如,如果路径上有多个可执行文件,即a.exe、a.bat,并且用户输入“a”(回车),则将执行哪个文件?
Windows 还支持哪些其他可执行格式?
For example if there are multiple executable files on the path i.e., a.exe, a.bat and user types 'a' (enter), which file will execute?
What other executable formats are supported on Windows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Windows 查看 PATHEXT 环境变量来决定哪些文件类型被视为可执行文件:
将执行路径上具有这些扩展名之一的第一个匹配文件。
您可以使用
assoc
和ftype
命令来了解文件将如何执行:(您可以使用
PATHEXT
,assoc< /code> 和
ftype
使任何文件类型可执行。)Windows looks at the
PATHEXT
environment variable to decide which file types are considered executable:The first matching file on the path that has one of those extensions will be executed.
You can use the
assoc
andftype
commands to find out how the file will be executed:(You can use
PATHEXT
,assoc
andftype
to make any file type executable.)优先级为:DOSKEY 宏 .COM .EXE .BAT
http://support.microsoft.com/kb/35284< /a>
Precedence is: DOSKEY Macro .COM .EXE .BAT
http://support.microsoft.com/kb/35284