Skip to main content
All CollectionsRemote Monitoring and Management (RMM)
Install the Gorelo agent using Intune
Install the Gorelo agent using Intune
S
Written by Shoaib
Updated over 2 weeks ago

1. Navigate to Assets in left menu

2. Click Download RMM

3. Select Client and Client Location and hit "Request RMM Agent"

4. Copy the Script

The script would look something like this
$currentPrincipal = New-Object Security.Principal.WindowsPrincipal([Security.Principal.WindowsIdentity]::GetCurrent()); if($currentPrincipal.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) { $goreloDir = "$Env:ProgramFiles\Gorelo"; $setupDir = "$goreloDir\Setup"; $downloadsDirectory = "$goreloDir\Installer\Downloads"; $downloadPath = "$downloadsDirectory\Gorelo.Rmm.Setup.zip";Remove-Item-path $goreloDir -recurse -ErrorAction SilentlyContinue; New-Item -Path $downloadsDirectory -ItemType Directory > $null -ErrorAction SilentlyContinue; $uri = [System.Uri]'https://gorelo.blob.core.windows.net/msi-installer/windows/Gorelo.Rmm.Setup.zip'; Invoke-WebRequest -Uri $uri -OutFile $downloadPath; Expand-Archive -Path $downloadPath -DestinationPath $setupDir; Start-Process -FilePath "$setupDir\Gorelo.Rmm.Setup\Gorelo.Rmm.Setup.exe" -ArgumentList "--i --l rglervnrnvrnvdrlnvrdkngrkngdrknrlknvdrkndgrldn==" -WindowStyle Hidden;}else{$Host.UI.WriteErrorLine('Failed to run script. Error: Administrator Privileges Required'); }

5. Navigate to Microsoft Intune and Provide Name

6. Keeps the Script settings as shown below.

7. Add groups if any

8. Check if all the settings matches as shown in the image below.

Did this answer your question?