Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Tell Whether a Value Exists in the RegistryContent of Tell Whether a Value Exists in the Registry.vbsMD5 Hash: E83CBE902D3EA77EED2B35D40FC38CB6 |
||
Const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "." Set objRegistry = GetObject("winmgmts:\\" & _ strComputer & "\root\default:StdRegProv") strKeyPath = "SOFTWARE\Microsoft\Windows NT\CurrentVersion" strValueName = "Test Value" objRegistry.GetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,strValue If IsNull(strValue) Then Wscript.Echo "The registry key does not exist." Else Wscript.Echo "The registry key exists." End If | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |