Kaseya / Datto RMM RMM Service Control Capability Report
Read-only Kaseya / Datto RMM script for rmm service control capability report.
Script Actions
Script Actions
Credibility
Last reviewed
Jun 4, 2026
Last tested
Jun 1, 2026
PowerShell
Windows PowerShell 5.1, PowerShell 7
Safety score
63/100
Documentation
100/100
Community rating
Coming soon
Downloads
Coming soon
Review status
approved
Verified by OperatorOS
Review
OperatorOS verified
Catalog
Official library
Safety
Static scan completed
Kaseya / Datto RMM RMM Service Control Capability Report is part of the official OperatorOS ScriptForge catalog. It has been reviewed for metadata completeness, safety scan results, PowerShell compatibility, and technician-facing documentation.
Script Body
# OperatorOS ScriptForge official read-only audit script
# Category: Kaseya / Datto RMM
# Report: RMM Service Control Capability Report
$OperatorOSFrameworkPath = Join-Path -Path $PSScriptRoot -ChildPath '..\..\..\framework\OperatorOS-ScriptFramework.psm1'
if (Test-Path -LiteralPath $OperatorOSFrameworkPath) {
Import-Module $OperatorOSFrameworkPath -Force
}
$ErrorActionPreference = 'Stop'
Get-Service | Where-Object Name -match 'Kaseya|Datto|AEM' | Select-Object Name,Status,CanStop,ServiceType
Requirements
- Windows PowerShell 5.1 or newer on an endpoint managed by Kaseya or Datto RMM.
Parameters
No parameters documented.
Examples
Run report
Runs the read-only audit report with default options.
./kaseya-datto-rmm-rmm-service-control-capability-report.ps1Changelog
1.0.0 - Initial official read-only audit/reporting seed. 1.1.0 - Added OperatorOS enterprise framework import bootstrap.