AB Tutor v9 Cloud Signed MSI Installer

Some setups require the deployment of a signed MSI installer, injecting your AB Tutor licence key ahead of time can cause MSI signing to fail. In this scenario we have also included a Signed MSI which will require additional arguments in order to associate your licence with your deployed Clients and Consoles.


Using Microsoft Intune:

  1. In the "App information" section, enter the name and description for the app.
  2. In the "Command-line Arguments" field, enter the one of the following commands:

    Client only install:
    LICENCE_KEY="your_licence_key" AB_CLOUD=1 /qn

    Console only install:
    LICENCE_KEY="your_licence_key" AB_CLOUD=1 REMOVE=FeatureClient ADDLOCAL=FeatureConsole /qn

    Client & Console install:
    LICENCE_KEY="your_licence_key" AB_CLOUD=1 ADDLOCAL=FeatureConsole /qn

    Replace "your_licence_key" with the actual licence key found on your ABTutor.com licence page.

Using msiexec:

  1. Using Command Prompt, navigate to the directory containing your MSI installer file using the cd command if necessary.
  2. Run the following command:

    Client only install:
    msiexec /i "ABTutor.msi" LICENCE_KEY="your_licence_key" AB_CLOUD=1 /qn

    Console only install:
    msiexec /i "ABTutor.msi" LICENCE_KEY="your_licence_key" AB_CLOUD=1 REMOVE=FeatureClient ADDLOCAL=FeatureConsole /qn

    Client & Console install:
    msiexec /i "ABTutor.msi" LICENCE_KEY="your_licence_key" AB_CLOUD=1 ADDLOCAL=FeatureConsole /qn

    Replace "your_licence_key" with the actual licence key found on your ABTutor.com licence page.