Installing Godot Launcher with winget
Starting with Godot Launcher v1.4.0, we publish an official winget manifest that tracks every Windows release. This gives you a trusted, script-friendly way to install and keep the launcher up to date without leaving the terminal.
Requirements
- Windows 10 version 1809 (build 17763) or later, or Windows 11.
- The App Installer package from the Microsoft Store, which provides the
wingetclient. - Administrative rights the first time you install, so winget can unpack the signed installer.
You can confirm that winget is available by running winget --info. If it is missing, open the App Installer listing in the Microsoft Store and click Get.
Install the latest release
Run one of these commands from PowerShell or Command Prompt to install the newest Godot Launcher build:
During the first install you may be prompted to accept the installer or elevate privileges. After completion, Godot Launcher appears in your Start Menu just like the manual installer.
Keep Godot Launcher updated
Winget can upgrade Godot Launcher when a new release lands:
You can check whether an upgrade is available without running it by using winget upgrade --name "Godot Launcher".
Discover other manifest details
winget show GodotLauncher.Launcherprints publisher metadata, installer URLs, and release notes.winget search "godot launcher"confirms you are selecting the official package before installing.winget list Godotreports whether the launcher is already installed.
Manifests are kept in sync with every Windows release. If a command fails with No applicable update found, you are already on the latest version.
Uninstall or reinstall
winget uninstall GodotLauncher.Launcherremoves the launcher. Your Godot projects remain intact.winget install --id GodotLauncher.Launcher --source winget --silentreinstalls without UI and is useful in CI scripts.- Pair
winget uninstallfollowed by a freshwinget installif you need to repair a corrupted installation.
Troubleshooting tips
- Run
winget source updateif winget cannot find the package, especially after waking a machine from sleep. - If the Microsoft Store is blocked, download the latest App Installer
.msixbundledirectly from the store page to enable winget. - For enterprise environments, export the manifest with
winget export GodotLauncher.Launcher --output winget.jsonand import it on managed devices.
If you continue to run into issues, grab the log from %LOCALAPPDATA%\Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState\DiagOutputDir\ and share it when opening an issue so we can help.