窗口7。
这是为我自己的机器,所以它是否需要管理权限或其他东西并不重要。
最好是在Python或.NET中,但是如果需要的话,我可以学习Win32(C/C++)编程。

最佳答案

如果要永久设置环境变量,可以将新值插入注册表。例如,使用vbscript,将路径“c:\ test”添加到path变量中

Set WshShell = WScript.CreateObject("WScript.Shell")
strReg = "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\Path"
strSetting = WshShell.RegRead(strReg)
strNewSetting = strSetting&";c\test"
WshShell.RegWrite strReg, strNewSetting

因此,如果您使用python或其他语言,您可以使用自己的api/模块来读写注册表

07-24 21:13