home *** CD-ROM | disk | FTP | other *** search
/ Netware Super Library / Netware Super Library.iso / update_h / ini_updt / win.mas < prev   
Encoding:
Text File  |  1994-11-27  |  860 b   |  36 lines

  1. ; INIUpdate Comments begin with a Semi-Colon!
  2. ;
  3. ; This file is used to update WIN.INI.  It demonstrates all the capabilities
  4. ; of INIUPDate. 
  5. ;
  6. ; * Adding New Sections
  7. ; * Unconditionally Deleteing Lines
  8. ; * Updating Key Values
  9. ; * Adding Lines To Existing Sections
  10. ; * Conditionally Deleting Lines
  11.  
  12. [WordProcess]
  13. ; This section will be added to WIN.INI
  14. Buttons=On
  15. Margins=0,1
  16. Colors=Default
  17.  
  18. [Windows]
  19. ; BorderWidth will be deleted, regardless of what it is set to
  20. ; This is an UNCONDITIONAL DELETION
  21. BorderWidth=
  22.  
  23. [Desktop]
  24. ; IconTitleSize will change from 8 to 10
  25. ; DoubleClickWidth will be added
  26. ; DoubleClickHeight will be added
  27. IconTitleSize=10
  28. DoubleClickWidth=4
  29. DoubleClickHeight=4
  30.  
  31. [Ports]
  32. ; FILE:= will be deleted, but only if it equals C:\WINPRINT.FIL
  33. ; This is a CONDITIONAL DELETION
  34. FILE:=C:\WINPRINT.FIL {DEL}
  35.  
  36.