Hi Christopher,<br><br><div class="gmail_quote">On Tue, Jul 20, 2010 at 12:32 PM, Christopher Rector <span dir="ltr"><<a href="mailto:crector@siumed.edu">crector@siumed.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
 I understand how the checks work to detect a given registry value, but how do you check for a default value that doesn't have a name other that (default) </blockquote><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

...<br>
Here's what I want to look for and if it exists then I want to blank the value by importing a .reg file that deletes the current value.<br>
<br>
Windows Registry Editor Version 5.00<br>
<br>
[HKEY_CLASSES_ROOT\lnkfile\shellex\IconHandler]<br>
@="{00021401-0000-0000-C000-000000000046}"<br>
<br></blockquote><div><br>I know that this check will work to see if the default value exists:<br><br><check type="registry" condition="exists" path="HKCR\lnkfile\shellex\IconHandler" /><br>
<br><br>If you really need your check to trigger on the exact value, then I would try this:<br><br><check type="registry" condition="equals" 
path="HKCR\lnkfile\shellex\IconHandler" value="{00021401-0000-0000-C000-000000000046}" /><br><br><br>I'm not sure if it will work, but you should be able to test it pretty easily.<br><br><br>Cheers,<br>
<br>Troy<br><br><br></div></div><br>