user2910626
user2910626

Reputation: 55

Registry Check CMD

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

Answers (1)

foxidrive
foxidrive

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

Related Questions