123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- ; 脚本由 Inno Setup 脚本向导 生成!
- ; 有关创建 Inno Setup 脚本文件的详细资料请查阅帮助文档!
- #define MyAppName "WorkTime"
- #define MyAppVersion "1.6"
- #define MyAppPublisher "南京火石闪信网络科技有限公司"
- #define MyAppExeName "MyProg.exe"
- [Setup]
- ; 注: AppId的值为单独标识该应用程序。
- ; 不要为其他安装程序使用相同的AppId值。
- ; (若要生成新的 GUID,可在菜单中点击 "工具|生成 GUID"。)
- AppId={{C8AD2873-2374-4415-8996-5CDCFF8711BD}
- AppName={#MyAppName}
- AppVersion={#MyAppVersion}
- ;AppVerName={#MyAppName} {#MyAppVersion}
- AppPublisher={#MyAppPublisher}
- DefaultDirName={autopf}\{#MyAppName}
- DisableProgramGroupPage=yes
- ; 以下行取消注释,以在非管理安装模式下运行(仅为当前用户安装)。
- ;PrivilegesRequired=lowest
- OutputDir=C:\Users\seya\Desktop
- OutputBaseFilename=WorkTime
- SetupIconFile=C:\gitproject\manHourHousekeeper\fhKeeper\formulahousekeeper\mywork\favicon.ico
- Compression=lzma
- SolidCompression=yes
- WizardStyle=modern
- [Languages]
- Name: "chinesesimp"; MessagesFile: "compiler:Default.isl"
- [Tasks]
- Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
- [Files]
- Source: "C:\Users\seya\Desktop\SmartTimeClient\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
- ; 注意: 不要在任何共享系统文件上使用“Flags: ignoreversion”
- [Icons]
- Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
- Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
- [Run]
- Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|