Trying to pull info from a reg key using a custom inventory
I am trying to pull the value of the Manufacturer name as a custom inventory field but it is not returning anything?
If I run this locally on the machine however, I get a value returned...
reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation /V Manufacturer
RegistryValueReturn(HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation,Manufacturer)
3 Comments
[ + ] Show comments
Answers (0)
Please log in to answer
Be the first to answer this question
also, try putting , STRING after Manufacturer. so the text would look like:
RegistryValueReturn(HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation,Manufacturer, STRING) - DaveMT 6 years ago