Documentation Index
Fetch the complete documentation index at: https://help.gorelo.io/llms.txt
Use this file to discover all available pages before exploring further.
Navigate to Library > Upload.
On the Installer step:
Select Installer Type = None. On the Software step:
- Select Add version to new software.
- Under Software Info, add:
Version Detection:
- Select Custom Detection Script.
- Add a New script with the default settings.
Copy-paste the script:
$registryPath = "HKLM:\SOFTWARE\Gorelo"
$valueName = "AgentVersion"
try {
$version = Get-ItemPropertyValue -Path $registryPath -Name $valueName -ErrorAction Stop
Write-Output $version
} catch {
Write-Error "Unable to read version: $($_.Exception.Message)"
exit 1
}
Installation
- Select Custom Detection Script.
- Add a New script and paste the Agent Asset installation command from your Gorelo tenant.
On the version step, input:
- Version String = 8.42.0.0
You will need to add this new software to your deployments page and then adopt the asset in Gorelo. Use a specific client/location installation command to skip the adoption requirement.
You can use a provisioning package to wipe Windows and install fresh with the Gorelo Agent.Create the Gorelo install script.
- Navigate to the Asset List
- Click + Assets up the top right and then Agent Asset.
- Select Client/Location (optional) and then Request Agent.
- Copy the PowerShell script and save it somewhere as
GoreloInstall.ps1.
Create the provisioning package.
- Install Windows Configuration Designer from the Microsoft Store.
- Open Windows Configuration Designer and select Provision desktop devices.
- Enter the project name, choose a location for the project folder.
- Click Finish.
- Follow the Wizard and configure anything you feel necessary.
- Enter the Device name, toggle on Remove pre-installed software (wipes the device).
- Click Next.
- Enter Set up network details or toggle off for wired connections only — and click Next.
- Select Local Admin and enter details.
- Click Next
- Add an application with the below details:
- Application name: Gorelo Install
- Installer path: Browse to the previously created GoreloInstall.ps1
- Command line arguments:
powershell.exe -executionpolicy bypass -file "goreloinstall.ps1"
- Click Next.
- Click Add.
- Click Next
Click Next on Add certificates to skip.
Click Create to generate the PPKG.
Apply the PPKG during the OOBE or directly by double-clicking.
You can use Intune to deploy the Gorelo Agent after Autopilot has completed its run.Create the Gorelo install script.
- Navigate to the Asset List.
- Click + Assets up the top right and then Agent Asset.
- Select Client/Location (optional) and then Request Agent.
- Copy the PowerShell script and save it somewhere as
GoreloInstall.ps1.
Add the Intune platform script.
- Open Intune and log in with a Global Administrator account.
- Navigate to Devices in the left menu and then Manage devices > Scripts and remediations.
- Select the Platform scripts tab at the top
- Click the + Add button and select Windows 10 and later.
- Click Next.
- Script location: upload the GoreloInstall.ps1 script.
- Run this script using the logged on credentials: No.
- Enforce script signature check: No.
- Run script in 64 bit PowerShell Host: Yes.
- Click Next.
- Included groups: Select the specific groups.
- Click Next.
- Review the details and click Add.