windows/cmd 上的可执行文件类型有哪些?他们的优先事项是什么?

发布于 2024-12-11 10:22:29 字数 91 浏览 0 评论 0原文

例如,如果路径上有多个可执行文件,即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 技术交流群。

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

发布评论

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

评论(2

等你爱我 2024-12-18 10:22:29

Windows 查看 PATHEXT 环境变量来决定哪些文件类型被视为可执行文件:

> echo %PATHEXT%
.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC

将执行路径上具有这些扩展名之一的第一个匹配文件。

您可以使用 assocftype 命令来了解文件将如何执行:(

> assoc .msc
.msc=MSCFile

> ftype MSCFile
MSCFile=%SystemRoot%\system32\mmc.exe "%1" %*

您可以使用 PATHEXT, assoc< /code> 和 ftype 使任何文件类型可执行。)

Windows looks at the PATHEXT environment variable to decide which file types are considered executable:

> echo %PATHEXT%
.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC

The first matching file on the path that has one of those extensions will be executed.

You can use the assoc and ftype commands to find out how the file will be executed:

> assoc .msc
.msc=MSCFile

> ftype MSCFile
MSCFile=%SystemRoot%\system32\mmc.exe "%1" %*

(You can use PATHEXT, assoc and ftype to make any file type executable.)

征﹌骨岁月お 2024-12-18 10:22:29

优先级为:DOSKEY 宏 .COM .EXE .BAT

http://support.microsoft.com/kb/35284< /a>

Precedence is: DOSKEY Macro .COM .EXE .BAT

http://support.microsoft.com/kb/35284

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