Home / Edge/ Administering· Upgrading Edge/Upgrading Edge on Windows

Upgrading Edge on Windows

There are two ways to upgrade Edge Nodes installed on Windows, depending on the version of Edge you’re running:

Cribl Edge VersionUpgrade Method
Version 4.3.1 and newerUpgrade Windows Nodes from the Leader via the UI, or by re-running a Windows installer from the filesystem (manually upgrading).
Version 4.3.0 and olderRe-run a Windows installer from the filesystem. Upgrades, backups, and rollbacks, are not supported in the UI for Cribl Edge versions 4.3.0 and older.

Upgrading Windows Edge Nodes via the UI

Upgrade Windows Edge Nodes that are running version 4.3.1 and newer via the UI.

Manually Upgrading Windows Edge Nodes

These are the steps to upgrade Windows Edge Nodes that are on version 4.3.0 and older.

Test this upgrade on a staging environment before making these changes to your production Fleet.

To manage Windows Nodes from the Leader, upgrade to version 4.3.1 or newer.

Consider using existing out-of-band automation to perform the following steps:

  1. Stop Cribl Edge on each Edge Node.

  2. Uninstall the existing version of Cribl Edge:

    • If you have the original MSI that you installed, you can run:

      msiexec /x cribl.xxx.msi
    • If not, you can get the GUID from:

      HKEY_LOCAL_MACHINE > SOFTWARE > Microsoft > Windows > CurrentVersion > Uninstall

    And then run msiexec /x {GUID}

    • If you prefer to use PowerShell to uninstall the MSI, run:

      $app = Get-WmiObject -Class Win32_Product -Filter "Name = 'Cribl Edge'"
      $app.Uninstall()
  3. Install the new Cribl Edge version:

    msiexec /i cribl-<X.X.X>-*-win32-x64.msi /qn /l*v C:\cribl-install.log KEEPDATA=1

KEEPDATA=1 persists data between installs. KEEPDATA will not overwrite the existing configurations, state, logs, etc.

When an older Edge Node is uninstalled, the product configurations are left behind under C:\ProgramData\Cribl, which the installer can reuse for the new Cribl Edge Node.

As soon as the new MSI is installed, it will automatically connect to the same Leader and join the same Fleet as before.

The Leader can upgrade Windows Nodes by running Cribl Edge 4.3.0 or later under the Local System account, instead of under the Administrator account.