win10 通过wmic命令行设置系统环境变量

简介

在系统维护或编写程序过程中,经常需要对系统环境变量进行设置、修改、删除炒作。

而通过编程修改系统环境变量,需要调用注册表API或调用wmi API接口,都有些过于麻烦。此时,如果通过system函数,直接调用批处理文件,则只需要一行代码。

注:修改系统环境变量,需要有管理员权限。

#include 
void main() {
	system("setenv.bat");
}

批处理实现如下:

::setenv.bat
@echo off

:: 创建系统环境变量
wmic ENVIRONMENT create name="OPENSSL_ENGINES",username="",VariableValue="engines-1_1"

:: 修改系统环境变量
wmic ENVIRONMENT where "name='OPENSSL_ENGINES' and username=''" set VariableValue="engines-1_2"

::删除系统环境变量
wmic ENVIRONMENT where "name='OPENSSL_ENGINES'" delete

批处理中,分别给出了创建环境变量,修改环境变量,删除环境变量的demo。可以根据需要调整批处理文件。

你可能感兴趣的:(windows操作系统,batch,c语言)