|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- ; ű Inno Setup ű ɣ
- ; йش Inno Setup űļϸİĵ
-
- #define MyAppName "ǻǻУ"
- #define MyAppVerName "ǻǻУ v2.5.43"
- #define MyAppPublisher "ǻԭ"
- #define MyAppURL "http://www.xhkjedu.com/"
- #define MyAppExeName "xhschool.exe"
-
- [Setup]
- ; ע: AppIdֵΪʶӦó
- ; ҪΪװʹͬAppIdֵ
- ; (µGUID |IDEGUID)
- AppId={{4B39765F-5B1F-4368-8675-2A22904B835A}
- AppName={#MyAppName}
- AppVerName={#MyAppVerName}
- AppPublisher={#MyAppPublisher}
- AppPublisherURL={#MyAppURL}
- AppSupportURL={#MyAppURL}
- AppUpdatesURL={#MyAppURL}
- DefaultDirName=D:\xhschool
- DefaultGroupName={#MyAppName}
- AllowNoIcons=yes
- OutputDir=E:\װ
- OutputBaseFilename=ǻǻУV2.5.43T
- SetupIconFile=E:\project\schoolclient\bin\x86\Debug\favicon256.ico
- Compression=lzma
- SolidCompression=yes
-
- [Languages]
- Name: "chinesesimp"; MessagesFile: "compiler:Default.isl"
-
- [Tasks]
- Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: checkablealone
- Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: checkablealone
-
- [Files]
- Source: "E:\project\schoolclient\bin\x86\Debug\xhschool.exe"; DestDir: "{app}"; Flags: ignoreversion
- Source: "E:\project\schoolclient\bin\x86\Debug\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
- ; ע: ҪκιϵͳļʹáFlags: ignoreversion
-
- [Icons]
- Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
- Name: "{group}\{cm:ProgramOnTheWeb,{#MyAppName}}"; Filename: "{#MyAppURL}"
- Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
- Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
- Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: quicklaunchicon
-
- [Run]
- Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, "&", "&&")}}"; Flags: nowait postinstall skipifsilent
-
|