@electron/packager
    Preparing search index...

    Interface Win32MetadataOptions

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

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

    Properties

    "application-manifest"?: string

    Path to a local manifest file.

    See MSDN for more details.

    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.

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

    See MSDN for details.