Other Free Tools tinysetup - A lightweight installer written in C v1.3

tinysetup - A lightweight installer written in C v1.3 2023-09-22

Download tinysetup (0.4 MB)

TinySetup is a lightweight installer written in C. All the software published on our website is packaged with TinySetup. Setup loader is only 24KB, small, simple and straightforward.

Examples

    ; DVDForge's setup script
    ; please run "tsc setup.tss" in command line to create DVDForge installer.

    [Setup]
    OutputFile=dvdforge_%v.exe
    AppName=DVDForge
    AppVersion=%v
    AppMutex=DVDForge_Mutex
    AppClassName=DVDForgeClass
    Publisher=Yubsoft

    ; use by:
    ; 1. get shortcut icon
    ; 2. get exe to run InstallParam: MainExe -i
    MainExe=dvdforge.exe

    ; if 1 install to c:\program files, else c:\program files (x86)
    Native64BitApp=1

    Compression=lzma
    SolidCompression=yes

    InstallParam=-xi
    UninstallParam=-xu

    [Languages]
    Default.ini
    ChineseSimplified.ini
    Italian.ini

    [Files]
    x86\*=flags:x86
    x64\*=flags:x64
    language\*.ini=language
    license.txt

Changelog

Version 1.3.0 2023-09-22
  Fixed setupldr for ARM64 failed to run (manifest issue)
  Fixed a memory leak in tsc.exe