Files
tacticalrmm/scripts/Win_Splashtop_Get_ID.ps1
r3die a24ad245d2 splashtop 4rd party integration docs and script
splashtop 4rd party integration docs and script
2021-11-29 15:20:29 -08:00

10 lines
240 B
PowerShell

# Retrieve Splashtop SUUID from device registry.
if (!$ErrorCount -eq 0) {
exit 1
}
$key = 'HKLM:\SOFTWARE\WOW6432Node\Splashtop Inc.\Splashtop Remote Server'
(Get-ItemProperty -Path $key -Name SUUID).SUUID
Write-Output $key.SUUID