Quickstart#

Introduction#

The CLI application, Melissa Updater, offers simplicity and uses the Releases service to check for updates, download files, and verify the integrity of those files.

After testing, scheduling a batch file or PowerShell script to utilize the CLI tool could automate the process entirely.

For more information on the Melissa Releases API, please see: Melissa Releases

Requirements#

  • Windows: Windows 11 64-bit or newer

  • Linux: Ubuntu 22.04 LTS

  • Dotnet Core SDK 8.0 or newer

Getting Started#

This download link will get you a copy of the Melissa Updater to use on your machine. Download Melissa Updater here:

What Can I Do ?#

Download a file#

This is a command to download a simple data file. For example, ews.txt.

For more details on how to download different file types, please click here to go to the full documentation.

Try it Now#

  • WINDOWS
  • LINUX
.\MelissaUpdater.exe file `
    -n "{{Filename}}" `
    -r "latest" `
    -l "{{LicenseKey}}" `
    -y "DATA"
./MelissaUpdater file \
    -n "{{Filename}}" \
    -r "latest" \
    -l "{{LicenseKey}}" \
    -y "DATA"

Download a manifest#

Click here to go to the full endpoint documentation.

Try it Now#

  • WINDOWS
  • LINUX
.\MelissaUpdater.exe manifest `
    -p "{{ProductName}}" `
    -r "latest" `
    -l "{{LicenseKey}}"
.\MelissaUpdater manifest \
    -p "{{ProductName}}" \
    -r "latest" \
    -l "{{LicenseKey}}"

Verify a file or a folder path#

Click here to go to the full endpoint documentation.

Try it Now#

  • WINDOWS
  • LINUX
.\MelissaUpdater.exe verify `
    -p "{{Path}}"
./MelissaUpdater verify \
    -p "{{Path}}"

Sample Code#

Product

Repository

Melissa Updater

melissa_favicon MelissaData/MelissaUpdater