| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- ; 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 "ComputerSalesApp.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={{227FB96A-6CA1-4D4A-BFC0-A8D1547A789A}
- AppName={#MyAppName}
- AppVersion={#MyAppVersion}
- ;AppVerName={#MyAppName} {#MyAppVersion}
- AppPublisher={#MyAppPublisher}
- DefaultDirName={autopf}\{#MyAppName}
- UninstallDisplayIcon={app}\{#MyAppExeName}
- ; "ArchitecturesAllowed=x64compatible" specifies that Setup cannot run
- ; on anything but x64 and Windows 11 on Arm.
- ArchitecturesAllowed=x64compatible
- ; "ArchitecturesInstallIn64BitMode=x64compatible" requests that the
- ; install be done in "64-bit mode" on x64 or Windows 11 on Arm,
- ; meaning it should use the native 64-bit Program Files directory and
- ; the 64-bit view of the registry.
- ArchitecturesInstallIn64BitMode=x64compatible
- 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=ComputerSalesSetup
- 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\ЗАЩИТА\КОТЯ\computer_sales\ComputerSalesApp\publish-win-x64\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
- Source: "C:\Users\Admin\Desktop\Учёба\2025-2026\ЗАЩИТА\КОТЯ\computer_sales\ComputerSalesApp\publish-win-x64\*"; 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
|