Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

If you prefer building the wrapper on your own, for example, for a newer version, follow its author’s instructions provided in this video.

🐛 Troubleshooting

\uD83E\uDD14 Problem

When I double click the install.bat file in Windows, It prints some stuff and closes then quickly. What to do?

\uD83C\uDF31 Solution

You need to run the bat file from the Windows Terminal. This way the window does not close when the script ends.

  • Open Windows Terminal:

    • Press Win + X and select Windows Terminal (or Windows Terminal (Admin) if administrative privileges are needed).

  • Navigate to the Directory:

    • In the terminal, navigate to the directory where your batch file is located.

      Code Block
      languagepowershell
      cd C:\hivemq\bin

  • Run the Batch File:

    • Once in the correct directory, type the name of the batch file and press Enter.

      Code Block
      languagepowershell
      install-something.bat
  • Observe the output of the bat file in the terminal

...