博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
将目录添加环境变量
阅读量:5303 次
发布时间:2019-06-14

本文共 2316 字,大约阅读时间需要 7 分钟。

有的时候我们需要将exe所在目录添加环境变量,这样可以在cmd中直接调用此exe,方法如下:

1 using System;  2 using System.Collections.Generic;  3 using System.Linq;  4 using System.Text;  5 using System.IO;  6 using Microsoft.Win32;  7 using System.Diagnostics;  8 using System.Runtime.InteropServices;  9 10 namespace AppGet {
11 class Program {
12 static void Main(string[] args) {
13 Register(); 14 15 Console.WriteLine("press any key to exit."); 16 Console.ReadLine(); 17 } 18 19 private static void Register() {
20 RegistryKey systemPathKey = Registry.LocalMachine.OpenSubKey(@"SYSTEM\CurrentControlSet\Control\Session Manager\Environment", true); 21 22 if (string.IsNullOrEmpty(systemPathKey.GetValue("AppGet", string.Empty).ToString())) {
23 systemPathKey.SetValue("AppGet", Path.GetDirectoryName(Process.GetCurrentProcess().MainModule.FileName), RegistryValueKind.String); 24 } 25 26 string path = systemPathKey.GetValue("Path", "Empty", RegistryValueOptions.DoNotExpandEnvironmentNames).ToString(); 27 if (!path.ToLower().Contains(@"%appget%")) {
28 systemPathKey.SetValue("Path", @"%AppGet%;" + path, RegistryValueKind.ExpandString); 29 } 30 31 int rtnVal = 0; 32 SendMessageTimeoutA(HWND_BROADCAST, WM_SETTINGCHANGE, 0, "Environment", 2, 5000, rtnVal); 33 } 34 35 private const int HWND_BROADCAST = 0xffff; 36 private const int WM_WININICHANGE = 0x001a, WM_SETTINGCHANGE = WM_WININICHANGE, INI_INTL = 1; 37 [DllImport("user32.dll")] 38 private static extern int SendMessageTimeoutA(int hWnd, uint wMsg, uint wParam, string lParam, int fuFlags, int uTimeout, int lpdwResult); 39 } 40 }

说明:

1. 22行的AppGet为系统变量名(下同)

2. 26行GetValue必须指定RegistryValueOptions.DoNotExpandEnvironmentNames,否则在接下来的SetValue会将系统Path中的的变量全部替换掉。

3. 28行SetValue必须指定RegistryValueKind.ExpandString,否则系统会把%AppGet%当成普通字符串,而不是变量。

4. 32的SendMessageTimeoutA作用为广播上面的设置,这样就不需要注销或重启系统了。

5. 之前也尝试过用Environment.SetEnvironmentVariable和Environment.GetEnvironmentVariable,后来发现GetEnvironmentVariable方法没有DoNotExpandEnvironmentNames这样的参数,所以会将系统Path中的的变量全部替换掉!

6. 在测试之前最好先备份下注册表。

转载于:https://www.cnblogs.com/cjfwu/archive/2012/02/16/2354083.html

你可能感兴趣的文章
关于easyUI实现自定义网格视图
查看>>
JAVA小知识点-Finally和Return的执行关系
查看>>
基站转经纬度
查看>>
构建ASP.NET网站十大必备工具
查看>>
a*寻路分析
查看>>
Android Activity的任务栈和四大启动模式
查看>>
table左边固定-底部横向滚动条-demo
查看>>
MySQL事件异常记录
查看>>
Redis 发布订阅
查看>>
Redis 事务
查看>>
中国创新教育交流会杂感
查看>>
逍遥笔记
查看>>
JSON 命令行工具
查看>>
博士生传给硕士生的经验
查看>>
ubuntu 查看软件包中的内容 (已经安装)
查看>>
iperf 一个测试网络吞吐的工具
查看>>
IOR and mdtest - measure parallel file system I/O performance at both the POSIX and MPI-IO level.
查看>>
文件系统测试工具整理
查看>>
好用的性能检测工具 - Glances
查看>>
tcp滑动窗口和读写缓冲区
查看>>