Reputation: 55
How can I found only the registry VALUE NAME in this code (Windows 7 Home Premium)
REG QUERY "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName
Upvotes: 1
Views: 305
Reputation: 41297
This may help with the find filter:
REG QUERY "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName |find /i "value name"
Upvotes: 2