Windows
Linux
Mac
Datto RMM for Windows
Note: Steps 1-10 need to be completed only once per company. If you’ve already done it in Mac, Windows, or Linux, you don't have to do it again
  1. In the left side menu in Datto RMM, Expand Sites
  2. Click Sites
  3. Click the site you want to deploy to first
  4. Under that site in the left menu, click Settings
  5. Under Variables, click Add Variable
  6. For Name, enter LWcompanycode
  7. For Value, enter
  8. Scroll down and click Save Site
  9. On the left side menu, click Automation
  10. Repeat the above steps for all of your sites, selecting the appropriate company from the drop-down menu above.
  11. Click Components
  12. In the top right corner, click Create Component
  13. For Name, enter Lavawall Install Windows
  14. Under Category, click Scripts
  15. Set Script to PowerShell
  16. Paste the following in the big script box
    $url = "https://lavawinupdate.lavawall.com/$LAVAWALL_KEY.zip"
    $dest = Join-Path $env:TEMP "Lavawall.zip"
    Invoke-WebRequest -Uri $url -OutFile $dest
    Expand-Archive -Path $dest -DestinationPath $env:TEMP -Force
    Start-Process -FilePath (Join-Path $env:TEMP "LavawallWin.exe") -Wait
    Remove-Item -Path $dest -Force
    Remove-Item -Path (Join-Path $env:TEMP "LavawallWin.exe") -Force
Datto RMM for Linux
Note: Steps 1-10 need to be completed only once per company. If you’ve already done it in Mac, Windows, or Linux, you don't have to do it again
  1. In the left side menu in Datto RMM, Expand Sites
  2. Click Sites
  3. Click the site you want to deploy to first
  4. Under that site in the left menu, click Settings
  5. Under Variables, click Add Variable
  6. For Name, enter LWcompanycode
  7. For Value, enter
  8. Scroll down and click Save Site
  9. On the left side menu, click Automation
  10. Repeat the above steps for all of your sites, selecting the appropriate company from the drop-down menu above.
  11. Click Components
  12. In the top right corner, click Create Component
  13. For Name, enter Lavawall Install Linux
  14. Under Category, click Scripts
  15. Set Script to Shell (Unix, macOS)
  16. Paste the following in the big script box
    wget https://linuxlavaupdate.lavawall.com/LavawallLin
    chmod +x ./LavawallLin
    ./LavawallLin --c $LAVAWALL_KEY
    exit
Datto RMM for Mac
Note: Steps 1-10 need to be completed only once per company. If you’ve already done it in Mac, Windows, or Linux, you don't have to do it again
  1. In the left side menu in Datto RMM, Expand Sites
  2. Click Sites
  3. Click the site you want to deploy to first
  4. Under that site in the left menu, click Settings
  5. Under Variables, click Add Variable
  6. For Name, enter LWcompanycode
  7. For Value, enter
  8. Scroll down and click Save Site
  9. On the left side menu, click Automation
  10. Repeat the above steps for all of your sites, selecting the appropriate company from the drop-down menu above.
  11. Click Components
  12. In the top right corner, click Create Component
  13. For Name, enter Lavawall Install Mac
  14. Under Category, click Scripts
  15. Set Script to Shell (Unix, macOS)
  16. Paste the following in the big script box
    #!/bin/bash
    lwcompanykey="$LAVAWALL_KEY"
    curl https://maclavaupdate.lavawall.com/LavawallMac -o ./LavawallMac
    chmod +x ./LavawallMac
    ./LavawallMac --c lwcompanykey
    exit