首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > windows >

怎么用VBS访问Windows7注册表

2012-01-20 
如何用VBS访问Windows7注册表Script: D:\Test\init.vbsLine: 6Char: 1Error: Invalid root in registry ke

如何用VBS访问Windows7注册表
Script: D:\Test\init.vbs
Line: 6
Char: 1
Error: Invalid root in registry key "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet001\Control\Session Manager\Environment\".
Code: 80070005 (Access Denied) 
Source: WshShell.RegWrite
 
----------------------------------
 
myPath = "this is my path"
 
Set WshShell = WScript.CreateObject("WScript.Shell")
RegPath = "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\"
WshShell.RegWrite RegPath & "myPath", myPath, "REG_SZ"


[解决办法]
权限不够,被拒绝了
[解决办法]

探讨
怎么办?我是administrators组的

热点排行