# MSI > Since: v1.24 pro !!! success "GoReleaser Pro" The msi feature is available only in [GoReleaser Pro feature](/pro/). GoReleaser can create MSI installers for windows binaries using [msitools][]. The `msi` section specifies how the **installers** should be created: ```yaml # .goreleaser.yaml msi: - # ID of the resulting installer. # # Default: the project name id: foo # Filename of the installer (without the extension). # # Default: '{{.ProjectName}}_{{.MsiArch}}' # Templates: allowed name: "myproject-{{.MsiArch}}" # The WXS file used to create the installers. # The file contents go through the templating engine, so you can do things # like `{{.Version}}` inside of it. # # Templates: allowed # Required. wxs: ./windows/app.wsx # IDs of the archives to use. # Empty means all IDs. ids: - foo - bar # GOAMD64 to specify which amd64 version to use if there are multiple # versions from the build section. # # Default: v1 goamd64: v1 # More files that will be available in the context in which the installer # will be built. extra_files: - logo.ico # Whether to remove the archives from the artifact list. # If left as false, your end release will have both the zip and the msi # files. replace: true # Set the modified timestamp on the output installer, typically # you would do this to ensure a build was reproducible. # Pass an empty string to skip modifying the output. # # Templates: allowed. mod_timestamp: "{{ .CommitTimestamp }}" ``` On Windows, it'll try to use the `candle` and `light` binaries from the [Wix Toolkit][wix] instead. Here's an example `wsx` file that you can build upon: ```xml ``` ## Limitations 1. Some options available in the [Wix Toolset][wix] won't work with [msitools][], run a snapshot build and verify the generated installers. 1. Only `amd64` and `386` are supported. !!! tip Learn more about the [name template engine](/customization/templates/). [msitools]: https://wiki.gnome.org/msitools [wix]: https://wixtoolset.org