vb.net 怎么修改系统的环境变量?
在调查一个问题,用vb.net 怎么修改系统的环境变量? 通过修改注册表可以吗?其他的方法呢?希望给些提示.谢谢了. --------------------编程问答-------------------- Dim buf As String, msg As String, idx As Integer
idx = 1
Do
buf = Environ(idx)
msg = msg & buf & vbCrLf
idx = idx + 1
Loop Until buf = ""
用上面的代码可以读出来,但是如何修改呢?
--------------------编程问答-------------------- 修改注册表吧。
用户变量:HKEY_CURRENT_USER\Environment
系统变量:\HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Environment
VB.NET改注册表可以用Microsoft.Win32下的Registry等类,这里有详细说明:
(传送门)http://www.soft6.com/tech/3/35697.html --------------------编程问答-------------------- 大家好强!强势围观 --------------------编程问答-------------------- 参考 msdn http://www.microsoft.com/china/MSDN/library/archives/library/dv_vstechart/html/vbtchAccessingregistrywithVisualBasicnet.asp
Thanks
补充:.NET技术 , VB.NET