home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 May / W2KPRK.iso / scripts.cab / delkey.kix < prev    next >
Text File  |  1999-11-04  |  477b  |  23 lines

  1. ;
  2. ;  DELKEY.SCR
  3. ;
  4. ;  KiXtart test script.
  5. ;
  6. ;  USAGE : KIX32 DELKEY $Key="<any key you like to delete>"
  7. ;
  8. ;  24-Aug-1995
  9. ;
  10. ;  Note :  This code sample is provided for demonstration purposes only.
  11. ;          Microsoft makes no warranty, either express or implied,
  12. ;          as to its usability in any given situation.
  13. ;
  14.  
  15.  
  16. if existkey( $Key ) <> 0
  17.    ? "Key doesn't exist: " + $Key
  18. else
  19.    if Deltree( $Key ) <> 0
  20.       ? "Deleted: " + $Key
  21.    endif
  22. endif
  23.