Advertisement
Advertisement
| 04.23.2008 at 05:33PM PDT, ID: 23348836 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: |
-- precursor: I need to connect to the following path and retrieve the Data Value: HKEY_LOCAL_MACHINE\Software\ACME\Packages\Platform Validation Tool\2.0 and the Value Name = Install Status and Data Value = 1.
The host (below) variable gets the computer name assigned to it.
--- VB.NET CODE ---
Else
' Connect to workstation
Dim conOptions As New Management.ConnectionOptions
With conOptions
.Impersonation = ImpersonationLevel.Impersonate
.Authentication = AuthenticationLevel.Packet
End With
Dim strKeyPath As String = "Software\ACME\Packages\Platform ValidationTool\2.0"
Dim ms As New ManagementScope
Dim mc As New ManagementClass
Dim mbo As New ManagementObject
ms = New System.Management.ManagementScope("\\" & _
host & "\root\cimv2", conOptions)
ms.Connect()
mc = New ManagementClass("StdRegProv")
mc.Scope = ms
mbo = mc.GetMethodParameters("EnumValues")
mbo.SetPropertyValue("hDefKey", CType("&H" & Hex(RegistryHive.LocalMachine), Long))
mbo.SetPropertyValue("sSubKeyName", strKeyPath)
mbo.GetPropertyValue("Install Status")
mbo = mc.GetMethodParameters("GetStringValue")
|