Interface Win32MetadataOptions

A collection of application metadata to embed into the Windows executable.

interface Win32MetadataOptions {
    CompanyName?: string;
    FileDescription?: string;
    InternalName?: string;
    OriginalFilename?: string;
    ProductName?: string;
    application-manifest?: string;
    requested-execution-level?: "asInvoker" | "highestAvailable" | "requireAdministrator";
}

Properties

CompanyName?: string

Defaults to the author name from the nearest package.json.

FileDescription?: string

Defaults to either productName or name from the nearest package.json.

InternalName?: string

Defaults to either productName or name from the nearest package.json.

OriginalFilename?: string

Defaults to the renamed Electron .exe file.

ProductName?: string

Defaults to either productName or name from the nearest package.json.

application-manifest?: string

Path to a local manifest file.

See MSDN for more details.

requested-execution-level?: "asInvoker" | "highestAvailable" | "requireAdministrator"

See MSDN for details.