(ActiveXpertsから取られた)このようになりますConnecting to WMI on a Remote Computer (MSDN)とScripts to manage Registry
サンプル・コードを参照するとよいでしょう:strComputer
値はの名前/アドレスに置き換えられる
const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set StdOut = WScript.StdOut
Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &_
strComputer & "\root\default:StdRegProv")
strKeyPath = "SOFTWARE\Microsoft\Windows NT\CurrentVersion\WinLogon"
strValueName = "UIHost"
oReg.GetExpandedStringValue HKEY_LOCAL_MACHINE,strKeyPath,_
strValueName,strValue
StdOut.WriteLine "The Windows logon UI host is: " & strValue
機械。
「いいえ」と「知っている」は全く異なる2つの単語です。 –