64位Windows下如何获取环境变量?

发布于 08-06 01:06 字数 104 浏览 6 评论 0原文

有没有办法在64位机器上检索环境变量。 我已经有 %abc% ,它在 32 位机器中返回变量,但在 64 位机器中不起作用。

我的错误: 如何通过命令行而不是通过编程语言来实现?

Is there any way to retrieve the environment variable in 64 bit machine.
I already have %abc% which returns me variable in 32 bit machine, but doesn't work in 64 bit.

My Mistake:
How can I get through command line not through programming language?

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

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

发布评论

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

评论(2

Spring初心2024-08-13 01:06:22

在 PowerShell 中,您将获得环境变量,

$Env:abc

这与位无关。

在 cmd 中,您可以获得环境变量,

%abc%

这也与位数无关,因此如果您能详细说明您到底尝试了什么以及它在哪里失败以及以何种方式失败,那就太好了。

In PowerShell you'll get environment variables with

$Env:abc

This is independent of bit-ness.

In cmd you can get environment variables with

%abc%

this is also independent of bit-ness, so it would be nice if you'd elaborate what exactly you tried and where it failed and in what way.

调妓2024-08-13 01:06:22

尝试 System.Environment.GetEnvironmentVariable("abc")

Try System.Environment.GetEnvironmentVariable("abc")

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