RoboShadow Agent Deployment Guide for IT Managers

 

Introduction

This guide provides IT Managers with detailed steps and considerations for deploying the RoboShadow Agent on Windows machines. It is designed to ensure a smooth and successful rollout by addressing critical elements such as the OrganisationID, deployment strategies, and best practices for various scenarios.

 

Key Considerations

OrganisationID

Uninstalling and reinstalling the agent

Migrating the RoboShadow agent to another organisation

  1. In the Windows “Apps and Features”, uninstall the RoboShadow Agent and the RoboShadow Update Service.

  2. Delete the following folder “C:\ProgramData\RoboShadow”.

  3. In the registry, delete the following entry “Computer\HKEY_LOCAL_MACHINE\SOFTWARE\RoboShadowLtd”.

  4. If the device is seen in the RoboShadow Portal, navigate to

  5. https://portal.roboshadow.com/devices and remove the device using the “Trash can” icon.
      a.  If the device appears on the Cyber Heal page https://portal.roboshadow.com/cyber-heal, remove the device using the “Trash can” icon.

  6. Re-install the RoboShadow Agent.

Deployment Methods

Intune Deployment

image-20250319-111036.png

 Super Ops Deployment

# Set a flag to indicate if OrgID is set
$haveSetOrgId = $True

 

# Attempt to retrieve the version from the registry
$version = (Get-ItemProperty -Path "HKLM:\SOFTWARE\RoboShadowLtd\Rubicon\Agent" -Name "Version" -ErrorAction SilentlyContinue).Version

 

# Check if OrgID is set and if the version is not found or less than 4
if ($haveSetOrgId -and (-not $version -or [int]($version -split '\.')[0] -lt 4)) {
    # Define the arguments for msiexec
    $arguments = @(
        "/i", "https://cdn.roboshadow.com/GetAgent/RoboShadowAgent-x64.msi",
        "/qb", "/norestart", "ORGANISATION_ID=$OrgID"
    )

 

    # Start the process to install the RoboShadow agent
    Start-Process -FilePath "C:\Windows\System32\msiexec.exe" -ArgumentList $arguments -Wait
}

image (3).png

When you run the script it will ask for the ORGID to be entered

image-20240703-144410.png

MSI-Based Installation

  1. Preparation:

  2. PowerShell Installation:

Golden Image Deployment

  1. Recommendation:

  2. If Installing on Golden Image:

Summary

By following these guidelines, IT Managers can ensure a successful deployment of the RoboShadow Agent across their Windows environments. Proper planning and adherence to the recommended practices will mitigate common issues and enhance the effectiveness of the rollout.