| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- ; Script generated by the Inno Setup Script Wizard.
- ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
- ; Non-commercial use only
- #define MyAppName "Автошкола"
- #define MyAppVersion "1.0"
- #define MyAppPublisher "ПТК"
- #define MyAppExeName "WindowsFormsApp6.exe"
- [Setup]
- ; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
- ; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
- AppId={{796F3EF3-3AEA-4A7F-ACC5-6A12355592F3}
- AppName={#MyAppName}
- AppVersion={#MyAppVersion}
- ;AppVerName={#MyAppName} {#MyAppVersion}
- AppPublisher={#MyAppPublisher}
- DefaultDirName={autopf}\{#MyAppName}
- UninstallDisplayIcon={app}\{#MyAppExeName}
- DisableProgramGroupPage=yes
- ; Uncomment the following line to run in non administrative install mode (install for current user only).
- ;PrivilegesRequired=lowest
- OutputDir=C:\Users\Admin\Desktop\Учёба\2025-2026\ЗАЩИТА\installer
- OutputBaseFilename=AutoschoolSetup
- SolidCompression=yes
- WizardStyle=modern dynamic
- [Languages]
- Name: "russian"; MessagesFile: "compiler:Languages\Russian.isl"
- [Tasks]
- Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
- [Files]
- Source: "C:\Users\Admin\Desktop\Учёба\2025-2026\ЗАЩИТА\ДРАКОША\autoschool\WindowsFormsApp6\bin\Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
- Source: "C:\Users\Admin\Desktop\Учёба\2025-2026\ЗАЩИТА\ДРАКОША\autoschool\WindowsFormsApp6\bin\Release\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
- ; NOTE: Don't use "Flags: ignoreversion" on any shared system files
- [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
|