批处理文件添加环境变量

批处理文件添加环境变量

本文介绍了从命令提示符/批处理文件添加环境变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在批处理文件中添加环境变量(系统).下面的命令显示错误:无效的语法.可以帮个忙.对我来说看起来不错.

I am trying to add a environment variable (System) in my batch file.The below command says ERROR: Invalid syntax. Can some one help.For me it looks good.

reg add HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment /v ToDelete /t REG_SZ /d "192.168.00.00"

谢谢

推荐答案

我认为您需要引用注册表项,因为它具有空格

I think you need to quote the registry key as it has spaces

reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v ToDelete /t REG_SZ /d "192.168.00.00"

这篇关于从命令提示符/批处理文件添加环境变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 08:24