in reply to Re^3: Removing keys in the registry (code)
in thread Removing keys in the registry

ok i get it :) that's a nice trick .

You can't have a registry key without an empty default value. That is just the way the registry is.

yes but what if i wanted to destroy that very "registry folder" after i emptied from all its values ?

  • Comment on Re^4: Removing keys in the registry (code)

Replies are listed 'Best First'.
Re^5: Removing keys in the registry (code)
by tye (Sage) on Sep 02, 2005 at 22:51 UTC

    Then just delete the key. (You can't delete a key if it contains subkeys but you can delete a key no matter how many values it has.)

    - tye