windows 全局变量_如何在Windows中使用全局系统环境变量

windows 全局变量

windows 全局变量

Any system administrator who spends a good bit of time in the command prompt or batch scripts is probably well aware of built in environment variables Windows offers (i.e. Path, WinDir, ProgramFiles, UserProfile, etc.). If you find yourself using a particular value over and over, wouldn’t it be great if you had your own variable which you can use the same way as the built in values?

任何在命令提示符或批处理脚本中花费大量时间的系统管理员都可能清楚地了解Windows提供的内置环境变量(即Path,WinDir,ProgramFiles,UserProfile等)。 如果您发现自己一遍又一遍地使用特定值,那么如果您拥有自己的变量并且可以使用与内置值相同的方式,那岂不是很好吗?

With a few clicks, you can create and maintain you own environment variables which are both global on the system and survive reboots.

只需单击几下,您就可以创建和维护自己的环境变量,这些变量既在系统上是全局的,又可以在重新引导后生存下来。

创建自定义系统环境变量 (Creating a Custom System Environment Variable)

Creating a new global system variable is quite simple and is one of those features hiding in plain sight. Please note the screenshots are for Windows Server 2008, however the process for most versions of Windows is almost identical with only a few of the screens different. In the Control Panel, open the System option (alternately, you can right-click on My Computer and select Properties). Select the “Advanced system settings” link.

创建新的全局系统变量非常简单,并且是隐藏在其中的那些功能之一。 请注意,屏幕截图是针对Windows Server 2008的,但是大多数Windows版本的过程几乎相同,只有少数几个屏幕不同。 在“控制面板”中,打开“系统”选项(或者,您可以右键单击“我的电脑”,然后选择“属性”)。 选择“高级系统设置”链接。

image

In the System Properties dialog, click “Environment Variables”.

在“系统属性”对话框中,单击“环境变量”。

image

In the Environment Variables dialog, click the New button underneath the “System variables” section.

在“环境变量”对话框中,单击“系统变量”部分下方的“新建”按钮。

image

Enter the name of your new variable as well the value and click OK.

输入新变量的名称以及值,然后单击“确定”。

image

You should now see your new variable listed under the “System variables” section. Click OK to apply the changes.

现在,您应该在“系统变量”部分下看到新变量。 单击确定以应用更改。

image

You can now access your new system environment variable like you would any other. You can use it from the command line or batch scripts without having to define it.

现在,您可以像访问其他系统变量一样访问新的系统环境变量。 您可以从命令行或批处理脚本中使用它,而无需对其进行定义。

image

使用自定义环境变量 (Using the Custom Environment Variable)

As stated above, your custom environment variable is no different than any other system variable as you can reference it from the command line and inside of scripts. For a quick example, consider this batch script:

如上所述,您的自定义环境变量与任何其他系统变量没有什么不同,因为您可以从命令行和脚本内部对其进行引用。 作为一个简单的示例,请考虑以下批处理脚本:

@ECHO OFF TITLE Global Environment Variable Test ECHO. ECHO System NotifyEmail value ECHO NotifyEmail = %NotifyEmail% ECHO. SETLOCAL ECHO Overriding global variable in this script… SET NotifyEmail=jfaulkner@otheremail.com ECHO NotifyEmail = %NotifyEmail% ECHO. ECHO Exiting override script… ENDLOCAL ECHO. ECHO System NotifyEmail value ECHO NotifyEmail = %NotifyEmail% ECHO. ECHO. ECHO. PAUSE

@ECHO OFF TITLE全局环境变量测试ECHO。 ECHO系统的NotifyEmail值ECHO NotifyEmail =%NotifyEmail%ECHO。 SETLOCAL ECHO此脚本中的重写全局变量…SET NotifyEmail=jfaulkner@otheremail.com ECHO NotifyEmail =%NotifyEmail%ECHO。 ECHO正在退出替代脚本…ENDLOCAL ECHO。 ECHO系统的NotifyEmail值ECHO NotifyEmail =%NotifyEmail%ECHO。 回声。 回声。 暂停

When executed, the output is exactly what you would expect:

执行后,输出正是您所期望的:

image

使用思路 (Usage Ideas)

The real power of custom environment variables  enters when you use them in your scripts. In our example, we set a variable called “NotifyEmail” which we could reference in any number of scripts without having to hard code the value. So in the event we need to change the email address, we simply update the system variable and the impacted scripts will use this new value without us having to update each script individually.

当在脚本中使用自定义环境变量时,它们的真正作用就体现出来了。 在我们的示例中,我们设置了一个名为“ NotifyEmail”的变量,我们可以在任意数量的脚本中引用该变量,而无需对值进行硬编码。 因此,如果需要更改电子邮件地址,我们只需更新系统变量,受影响的脚本将使用此新值,而无需我们分别更新每个脚本。

This is not only a time saver, but also protects against the situation where you forget to update a particular script and a “dead” value is being used. Additionally, in the event you need to override a system variable in a particular script, you can see in our example above this is fully supported.

这不仅节省了时间,而且还可以避免因忘记更新特定脚本而使用“无效”值的情况。 此外,如果您需要在特定脚本中覆盖系统变量,则可以在上面的示例中看到,这是完全受支持的。

Here are some ideas where you could apply system variables in place of local scope variables:

这里有一些想法,您可以在其中应用系统变量代替局部范围变量:

  • Email addresses (like in our example)

    电子邮件地址(例如我们的示例)
  • Backup folder locations

    备份文件夹位置
  • URL and FTP sites

    URL和FTP站点
  • Metric and threshold values

    指标和阈值

Another great feature about using system variables is you have a single place where you can edit or view your variable values. Simply put, you could potentially apply updates to multiple scripts by editing the environment variables in a single location.

使用系统变量的另一个重要功能是您可以在一个地方编辑或查看变量值。 简而言之,您可以通过在单个位置中编辑环境变量来将更新应用于多个脚本。

翻译自: https://www.howtogeek.com/51807/how-to-create-and-use-global-system-environment-variables/

windows 全局变量

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/279048.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Day2-T1

原题目 Describe&#xff1a;贪心&#xff0c;左边和右边中选字典序小的 code&#xff1a; #include<bits/stdc.h> using namespace std; int n,step,head,tail; char p[50005]; int main() {freopen("bcl.in","r",stdin);freopen("bcl.out&quo…

hadoop编译java,Hadoop源码编译(2.4.1)

背景Hadoop 2.4.1预编译版本自带的libhadoop.so是在32位机器上编译上,导致在64位OS上运行时&#xff0c;总出现如下告警&#xff1a;WARN util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable查看…

C# System.Windows.Forms.NumericUpDown 控件全选其中文字

num_length.Focus(); UpDownBase updbText (UpDownBase)num_length; num_length.Select(0, updbText.Text.Length);转载于:https://www.cnblogs.com/LuoEast/p/7942476.html

twitter api使用_使用P2创建自己的Twitter风格的组博客

twitter api使用Would you like a great way to post stuff quickly online and communicate with your readers? Here’s how you can use the P2 theme to transform WordPress into a great collaboration and communications platform. 您是否想以一种很好的方式在网上快…

10_30_unittest

1、断言 1&#xff09;、self.assertEqual(2,res)#期望值qian、结果值hou2&#xff09;TextTestRunner 源码 必要的参数3&#xff09;测试结果 上下文管理器 with open("test.txt",w,encodingutf-8) as file:runner unittest.TextTestRunner(streamfile,verbosity2)…

用maven profile实现环境配置切换

前言 互联网后端服务通常会部署多个环境&#xff1a;开发环境、测试环境、预发布环境和生产环境。不同的环境通常有各自的环境配置&#xff0c;例如mysql服务器的地址、用户名密码&#xff0c;zookeeper的ip和端口等等。为了使打出的jar包能获取不同环境的配置&#xff0c;业界…

laravel graphql php,结合 Laravel 初步学习 GraphQL

本文字数&#xff1a;7134&#xff0c;大概需要14.27分钟。按照官网所述的&#xff1a;A query language for your API一种用于 API 的查询语言GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data. GraphQL provides a…

wi-fi共享大师免广告_如何保护Wi-Fi网络免受入侵

wi-fi共享大师免广告Insecure Wi-Fi is the easiest way for people to access your home network, leech your internet, and cause you serious headaches with more malicious behavior. Read on as we show you how to secure your home Wi-Fi network. 不安全的Wi-Fi是人们…

MongoDb分片集群认证

本文主要基于已经搭建好的未认证集群&#xff0c;结合上篇Mongodb副本集分片集群模式环境部署&#xff08;https://www.cnblogs.com/woxingwoxue/p/9875878.html&#xff09;&#xff0c; MongoDb分片集群认证几个主要流程1.在分片集群环境中&#xff0c;副本集内成员之间需要用…

汉克尔变换matlab,HankelTransform

HankelTransform所属分类&#xff1a;matlab例程开发工具&#xff1a;matlab文件大小&#xff1a;135KB下载次数&#xff1a;66上传日期&#xff1a;2011-09-17 13:41:39上 传 者&#xff1a;甜头说明&#xff1a; Matlab Hankel变换源代码&#xff0c;可以直接当做MATLAB too…

【材质】色彩基础

RBG颜色空间 目前&#xff0c;绝大部分显示器采用的是RGB颜色标准&#xff0c;因此几乎所有软件也采用此标准&#xff0c;UE4也不例外。 R、G、B这三个字母分别代表红色&#xff08;red&#xff09;、绿色&#xff08;green&#xff09;、蓝色&#xff08;blue&#xff09;三条…

使用mintty(_如何使用Mintty改善Cygwin控制台

使用mintty(Cygwin’s great for getting some Linux command-line goodness in Windows, but using the Windows Shell to access it kills some of that magic. Using Mintty and a few other methods, you can make the experience much more luxurious. Cygwin非常适合在Wi…

18.phpmyadmin 4.8.1 远程文件包含漏洞(CVE-2018-12613)

phpmyadmin 4.8.1 远程文件包含漏洞&#xff08;CVE-2018-12613&#xff09; phpMyAdmin是一套开源的、基于Web的MySQL数据库管理工具。其index.php中存在一处文件包含逻辑&#xff0c; 通过二次编码即可绕过检查&#xff0c;造成远程文件包含漏洞。 受影响版本: phpMyAdmin 4.…

开源php面板,宝塔面板nginx安装终于搞定了

server{listen 80;server_name lvyou.yssknet.com;index index.php index.html index.htm default.php default.htm default.html;root ***********/public;#SSL-START SSL相关配置&#xff0c;请勿删除或修改下一行带注释的404规则#error_page 404/404.html;#SSL-END#ERROR-PA…

[Erlang 0004] Centos 源代码编译 安装 Erlang

由于最终部署的生产环境是Centos&#xff0c;所以我需要在Centos中安装Erlang B13R04 &#xff0c;第一次做这件事情破费周折&#xff0c;主要是对Erlang依赖的库不熟悉&#xff0c;总是编译不过&#xff1b;这里梳理一下安装过程中的细节&#xff1a; Erlang依赖哪些库&#x…

关于“Python”的核心知识点整理大全38

14.1.1 创建 Button 类 由于Pygame没有内置创建按钮的方法&#xff0c;我们创建一个Button类&#xff0c;用于创建带标签的实心矩形。 你可以在游戏中使用这些代码来创建任何按钮。下面是Button类的第一部分&#xff0c;请将这个类保存为 文件button.py&#xff1a; button.py …

同步您的Google Chrome书签,主题等

Do you regularly use Google Chrome on multiple computers? Here’s how you can keep almost everything in your browser synced easily in Google Chrome. 您是否经常在多台计算机上使用Google Chrome&#xff1f; 您可以通过以下方法在Google Chrome浏览器中轻松同步浏…

Python中函数的参数传递与可变长参数

转自旭东的博客原文 Python中函数的参数传递与可变长参数 Python中传递参数有以下几种类型&#xff1a; &#xff08;1&#xff09;像C一样的默认缺省函数 &#xff08;2&#xff09;根据参数名传参数 &#xff08;3&#xff09;可变长度参数 示例如下&#xff1a; &#xff08…

matlab的plot没有反应,用plot画图没有反应

本帖最后由 躺着看雨 于 2018-6-7 10:35 编辑0.0854232732222489 -1.47227270375083e-08 17.0844721322814 17.08465464444980.0854232767446789 -1.41282430199396e-08 17.0844728367686 17.08465534893580.0854232802671089 …

转]MATLAB 与 C 语言的接口

MATLAB 到 C 语言程序的转换可以由两种途径完成&#xff0c;其一是 MATLAB 自己提供的 C 语言翻译程序 mcc, 另一种是原第 3 方公司 MathTools 开发的 MATCOM。后者出现较早&#xff0c;功能远比 MATLAB 自己的翻译程序强大&#xff0c;所以 MathTools 公司已经被 MathWorks 公…