Read all registry keys in subfolder WSH
I am trying to read all the registry keys below this path:
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\
Under 开发者_StackOverflowthat folder there are a list of GUIDs that I want to get
Edit - I cannot use .Net
Thanks.
You can use the REG.exe QUERY command and capture the results (see this page: http://www.rgagnon.com/wshdetails/wsh-0017.html)
reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
精彩评论