如何从 emacs 获取 Windows 版本

发布于 2024-12-13 00:24:51 字数 398 浏览 1 评论 0原文

如何从emacs获取windows的详细版本信息。 我尝试调用“ver”Windows 命令来获取版本信息,但失败了。

(call-process "ver")

CxCe

Debugger entered--Lisp error: (file-error "Searching for program" "no such file or  directory" "ver")
call-process("ver")
eval((call-process "ver"))
eval-last-sexp-1(nil)
eval-last-sexp(nil)
call-interactively(eval-last-sexp nil nil)

how to get the detail version information of windows from emacs.
i am try to invoke "ver" windows command to get version information, but got failed.

(call-process "ver")

C-x C-e

Debugger entered--Lisp error: (file-error "Searching for program" "no such file or  directory" "ver")
call-process("ver")
eval((call-process "ver"))
eval-last-sexp-1(nil)
eval-last-sexp(nil)
call-interactively(eval-last-sexp nil nil)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

我喜欢麦丽素 2024-12-20 00:24:51
(shell-command "ver" t) ;; outputs version in current buffer
(shell-command "ver" t) ;; outputs version in current buffer
疑心病 2024-12-20 00:24:51

您还可以查询系统配置: Ch v system-configuration RET

文档指出:

在 MS-Windows 上,该值反映了操作系统风格和版本
Emacs 正在运行。

在我的笔记本电脑上,它显示 i386-mingw-nt5.1.2600

You can also query system-configuration : C-h v system-configuration RET

The documentation states:

On MS-Windows, the value reflects the OS flavor and version on which
Emacs is running.

On my laptop, it says i386-mingw-nt5.1.2600

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