home *** CD-ROM | disk | FTP | other *** search
/ The Best of Windows 95.com 1996 September / WIN95_09964.iso / filetool / REGISTRY.ZIP / Registry.inf < prev    next >
INI File  |  1996-03-18  |  2KB  |  76 lines

  1. ;**********************************************************************
  2. ; Author: chrisb@vironix.co.za
  3. ;**********************************************************************
  4.  
  5. [version]
  6. signature="$CHICAGO$"
  7. SetupClass=BASE
  8.  
  9. [DefaultInstall]
  10. OptionDesc  = %DESC%
  11. Tip         = %TIP%
  12. ;UpdateInis  =
  13. InstallType = 0             
  14. IconIndex   = 11        
  15. Uninstall   = DefaultUninstall
  16. CopyFiles   = Dest.install, Dest.Register
  17. AddReg      = Reg.Install, Reg.Uninstall
  18.  
  19. [DefaultUninstall]
  20. DelFiles=Dest.install, Dest.Register
  21. DelReg=Reg.Install, Reg.Uninstall
  22.  
  23. ;**********************************************************************
  24. ; Registry Settings.
  25. ;**********************************************************************
  26.  
  27. [Reg.Install]
  28. HKCR,%CLSID%,,,%DESC%
  29. HKCR,%CLSID%\InProcServer32,,,"%DllName%"
  30. HKCR,%CLSID%\InProcServer32,ThreadingModel,,"Apartment"
  31. HKCR,%CLSID%\DefaultIcon,,,"%DllName%,0"
  32. HKCR,%CLSID%\ShellFolder,Attributes,3,40,01,00,A0
  33.  
  34. HKLM,%MYCOMP%,,,"Registry"
  35.  
  36. [Reg.Uninstall]
  37. HKLM,%UNINST%\SHRegistry,"DisplayName",,%DESC%
  38. HKLM,%UNINST%\SHRegistry,"UninstallString",,"RunDll setupx.dll,InstallHinfSection DefaultUninstall 4 registry.inf"
  39.  
  40. ;**********************************************************************
  41. ; Destination Folders for the files
  42. ;**********************************************************************
  43. ; 11=system 17=inf 25=shared(windows)
  44.  
  45. [DestinationDirs]
  46. Dest.Install=11
  47. Dest.Register=17
  48.  
  49. [Dest.Install]
  50. Registry.dll
  51.  
  52. [Dest.Register]
  53. Registry.inf
  54.  
  55. ;**********************************************************************
  56. ; SourceDisks - where are the files?
  57. ;**********************************************************************
  58.  
  59. [SourceDisksNames]
  60. 55="Downloaded Files","",1
  61.  
  62. [SourceDisksFiles]
  63. Registry.dll=55
  64. Registry.inf=55
  65.  
  66. ;**********************************************************************
  67. ; Strings for Macro Expansion
  68. ;**********************************************************************
  69. [Strings]
  70. DESC    = "Registry"
  71. DLLNAME = "Registry.dll"
  72. TIP     = "Allows explorer to browse the Registry"
  73. CLSID   = "CLSID\{0FDC8DC0-2E44-11cf-ACA1-0000C09DBD97}"
  74. MYCOMP    = "SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\mycomputer\NameSpace\{0FDC8DC0-2E44-11cf-ACA1-0000C09DBD97}"
  75. UNINST  = "SoftWare\Microsoft\Windows\CurrentVersion\Uninstall"
  76.