将代码从vbscript转换为Jscript?

时间:2011-04-05 14:25:06

标签: javascript vbscript wmi user-profile

如何将以下VBScript代码转换为用于获取所有用户的用户配置文件路径的JScript?

Set oWshNet = CreateObject("Wscript.Network")
sComputer = oWshNet.ComputerName
'For remote computer
'sComputer = "some name or IP"
Const HKLM = &H80000002

sProfileRegBase = "SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList" 
Set oReg = GetObject("WinMgmts:{impersonationLevel=impersonate}!//" _ 
                & sComputer & "/root/default:StdRegProv")
Set oWMI = GetObject("WinMgmts:{impersonationLevel=impersonate}!//" _ 
                & sComputer & "/root/cimv2")
Set colItems = oWMI.ExecQuery _ 
                ("Select Name,SID from Win32_UserAccount WHERE Domain = '" _ 
                & sComputer & "'",,48)
For Each oItem In colItems
  sAddInfo = ""
  Wscript.Echo "User name: " & oItem.Name & sAddInfo
  oReg.GetExpandedStringValue HKLM, sProfileRegBase& "\" & oItem.SID, _ 
                  "ProfileImagePath", sProfilePath
  If IsNull(sProfilePath) Then
    sProfilePath = "(none defined)"
  End If <br>
  Wscript.Echo "Profile path: " & sProfilePath
  Wscript.Echo   ' blank line
Next

我部分成功转换,但坚持2件事。

  1. 请确认我对oReg = GetObject("WinMgmts:\\\\.\\root\\default:StdRegProv");的使用是否正确,是否与代码中给出的相同。如果没有,请建议正确使用。

  2. JScript中GetExpandedStringValue的等价物是什么?如果没有,在获取值之前验证注册表项是否存在的更好方法是什么?

3 个答案:

答案 0 :(得分:1)

以下是一个示例解决方案:(来自http://www.windowsitpro.com/content/content/93402/Listing_05.txt

// GetSystemPath.js

var HKEY_LOCAL_MACHINE = 0x80000002;
var ENVIRONMENT_SUBKEY = "SYSTEM\\CurrentControlSet\\Control"
  + "\\Session Manager\\Environment";

var computer, regprov, method, inparams, outparams, systempath;

// CALLOUT A
// Step 1: Get an instance of the WMI object.
computer = ".";
regprov = GetObject("winmgmts:{impersonationlevel=impersonate}!//"
  + computer + "/root/default:StdRegProv");
// END CALLOUT A

// CALLOUT B
// Step 2: Create an InParameters object for the method.
method = regprov.Methods_.Item("GetExpandedStringValue");
inparams = method.InParameters.SpawnInstance_();
// END CALLOUT B

// CALLOUT C
// Step 3: Set the InParameters object's properties.
inparams.hDefKey = HKEY_LOCAL_MACHINE;
inparams.sSubKeyName = ENVIRONMENT_SUBKEY;
inparams.sValueName = "Path";
// END CALLOUT C

// CALLOUT D
// Step 4: Call ExecMethod_ to return an OutParameters object.
outparams = regprov.ExecMethod_(method.Name, inparams);
// END CALLOUT D

// CALLOUT E
// Step 5: The OutParameters object contains the method's results.
if (outparams.ReturnValue == 0) {
  systempath = outparams.sValue;
  WScript.Echo(systempath);
}
// END CALLOUT E

答案 1 :(得分:1)

  

1)Pl确认是我对oReg = GetObject的使用(“WinMgmts:\。\ root \ default:StdRegProv”);是正确的,是否与代码中给出的相同?如果没有,请建议正确的用法?

在这种情况下,正斜杠(/)和反斜杠(\)都可以。但是,反斜杠需要加倍,因为它们是JScript中的特殊字符。

  

2)Jscirpt中GetExpandedStringValue的类似功能是什么?如果没有,在获取值之前验证注册表项是否存在的更好方法是什么?

实际上,您可以在JScript中使用StdRegProv.GetExpandedStringValue,即使此方法使用out参数且JScript本身不支持out参数。诀窍是通过ExecMethod_调用它。有关说明和示例,请参阅Writing WMI Scripts in JScript

答案 2 :(得分:0)

任何带\字符的字符串都需要进行转义;

var sProfileRegBase = "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList" 

这包括您的GetObject()来电。

GetExpandedStringValue是一样的;它不是VB函数,它的“Wscript.Network”对象的方法也适用于js。