Windows
Download Link for
To install:
- Download from the above link
- Unzip the file
- Run LavawallWin.exe with Administrator permissions.
Linux
Mac
Download Link for
To install
- Open terminal
wget -o installer.sh
chmod +x ./installer.sh
sudo ./installer.sh
- enter your password
- Click Allow when prompted to allow terminal to manage your computer
Datto RMM for Windows
- In the left side menu in Datto RMM, Expand Sites
- Click Sites
- Click the site you want to deploy to first
- Under that site in the left menu, click Settings
- Under Variables, click Add Variable
- For Name, enter
LWcompanycode
- For Value, enter
- Scroll down and click Save Site
- On the left side menu, click Automation
- Repeat the above steps for all of your sites, selecting the appropriate company from the drop-down menu above.
- Click Components
- In the top right corner, click Create Component
- For Name, enter Lavawall Install Windows
- Under Category, click Scripts
- Set Script to PowerShell
- 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
- In the left side menu in Datto RMM, Expand Sites
- Click Sites
- Click the site you want to deploy to first
- Under that site in the left menu, click Settings
- Under Variables, click Add Variable
- For Name, enter
LWcompanycode
- For Value, enter
- Scroll down and click Save Site
- On the left side menu, click Automation
- Repeat the above steps for all of your sites, selecting the appropriate company from the drop-down menu above.
- Click Components
- In the top right corner, click Create Component
- For Name, enter Lavawall Install Linux
- Under Category, click Scripts
- Set Script to Shell (Unix, macOS)
- 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
- In the left side menu in Datto RMM, Expand Sites
- Click Sites
- Click the site you want to deploy to first
- Under that site in the left menu, click Settings
- Under Variables, click Add Variable
- For Name, enter
LWcompanycode
- For Value, enter
- Scroll down and click Save Site
- On the left side menu, click Automation
- Repeat the above steps for all of your sites, selecting the appropriate company from the drop-down menu above.
- Click Components
- In the top right corner, click Create Component
- For Name, enter Lavawall Install Mac
- Under Category, click Scripts
- Set Script to Shell (Unix, macOS)
- 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