home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2001 June / VPR0106A.BIN / OLS / LDHDR131 / ldhdr131.lzh / lnhdr.inf < prev    next >
Windows Setup INFormation  |  2001-03-10  |  2KB  |  60 lines

  1. ;----------------------------------------------------------------------------
  2. ; lnhdr.inf - 「リンク作成シェル拡張」 インストーラ/アンインストーラ
  3. ; 対応OS  : Windows 2000
  4. ; 最終更新: 2001/03/11
  5. ;----------------------------------------------------------------------------
  6.  
  7. [Version]
  8. signature="$WINDOWS NT$"
  9.  
  10. ; インストール処理
  11. [DefaultInstall.ntx86]
  12. CopyFiles = LINKHDR.Copy
  13. AddReg    = LINKHDR.Reg, LINKHDR.uninst.reg
  14.  
  15. ; アンインストール処理(再起動時にアンインストールをスケジュールする)
  16. [DefaultUninstall.ntx86]
  17. AddReg    = LINKHDR.Uninstall.reg
  18. DelReg    = LINKHDR.uninst.reg
  19.  
  20. ; 再起動時に行うアンインストール処理
  21. [AfterReboot]
  22. DelReg    = LINKHDR.Uninstall.reg
  23. DelFiles  = LINKHDR.Copy
  24.  
  25. [SourceDisksNames]
  26. 1="LINKHDR", "", 1
  27.  
  28. [SourceDisksFiles]
  29. lnhdr.dll        = 1
  30. lnhdr.inf        = 1
  31.  
  32. [LINKHDR.Copy]
  33. lnhdr.dll
  34. lnhdr.inf
  35.  
  36. [DestinationDirs]
  37. LINKHDR.Copy=11        ; winnt\system32
  38.  
  39. ; COM DLLを登録
  40. [LINKHDR.Reg]
  41. HKLM,%SMWCV%\RunOnce\Setup, lnhdr_regsvr32,, "regsvr32 /s /c lnhdr.dll"
  42.  
  43. ; 再起動時に[AfterReboot]セクションを実行するように設定
  44. [LINKHDR.Uninstall.reg]
  45. HKLM,%SMWCV%\RunOnce\Setup, %AppName%,, "regsvr32 /u /s /c lnhdr.dll"
  46. HKLM,%SMWCV%\Run, %AppName%,, "rundll32 setupapi.dll,InstallHinfSection AfterReboot 132 lnhdr.inf"
  47.  
  48. ; アンインストール/アプリケーション情報の追加
  49. [LINKHDR.uninst.reg]
  50. HKLM,%SMWCV%\Uninstall\ldhdr, DisplayName,, %AppName%
  51. HKLM,%SMWCV%\Uninstall\ldhdr, UninstallString,, "rundll32 setupapi.dll,InstallHinfSection DefaultUninstall 132 lnhdr.inf"
  52. HKLM,%SMWCV%\Uninstall\ldhdr, ProductID,, "--"
  53. HKLM,%SMWCV%\Uninstall\ldhdr, URLInfoAbout,, "http://mikilab.doshisha.ac.jp/~kawasaki/"
  54. HKLM,%SMWCV%\Uninstall\ldhdr, Publisher,, "Takashi Kawasaki"
  55. HKLM,%SMWCV%\Uninstall\ldhdr, HelpLink,, "http://mikilab.doshisha.ac.jp/~kawasaki/"
  56.  
  57. [Strings]
  58. SMWCV    = "SOFTWARE\Microsoft\Windows\CurrentVersion"
  59. AppName = "リンク作成シェル拡張"
  60.