User Tools

Site Tools

blog:2023-09-23_nsis_common_attribute



2023-09-23 NSIS: Common Attribute

  • Name, 安裝檔名稱
  • Icon, 安裝檔圖示
  • OutFile, 安裝腳本產生的執行檔檔名
  • InstallDir, 預設安裝路徑
  • InstallDirRegKey, 如果有安裝過的話可以取得之前安裝的路徑直接安裝
  • RequestExecutionLevel, 執行權限
  • LicenseText, 授權文字標題
  • LicenseData, 授權內容

Detail

  • Name, 安裝檔名稱
    Name "Example"
  • Icon, 安裝檔圖示
    Icon "Example.ico"
  • OutFile, 安裝腳本產生的執行檔檔名
    OutFile "Example.exe"
  • InstallDir, 預設安裝路徑
    InstallDir $PROGRAMFILES\Example
  • InstallDirRegKey, 如果有安裝過的話可以取得之前安裝的路徑直接安裝(須配合執行腳本中有WriteRegStr)
    InstallDirRegKey HKLM "Software\NSIS_Example" "Install_Dir"
  • RequestExecutionLevel, 執行權限(none|user|highest|admin)
    RequestExecutionLevel admin
  • LicenseText, 授權文字標題
    LicenseText  "ExampleLicense" 
  • LicenseData, 授權內容(.txt|rtf)
    LicenseData "ExampleLicense.txt"

TAGS

  • 33 person(s) visited this page until now.

Permalink blog/2023-09-23_nsis_common_attribute.txt · Last modified: 2023/09/23 17:54 by jethro

oeffentlich