Script library - screenconnect collector
This commit is contained in:
25
scripts/Win_Screenconnect_GetGUID.ps1
Normal file
25
scripts/Win_Screenconnect_GetGUID.ps1
Normal file
@@ -0,0 +1,25 @@
|
||||
<#
|
||||
Requires global variables for serviceName "ScreenConnectService"
|
||||
serviceName is the name of the ScreenConnect Service once it is installed EG: "ScreenConnect Client (1327465grctq84yrtocq)"
|
||||
Variable value must start and end with " (Prior to TRMM Version 0.6.5), remove / don't use " on TRMM Version 0.6.5 or later.
|
||||
Requires Custom Fields Agent entry Name: ScreenConnectGUID Type: text
|
||||
URL Action entry: https://YOURNAME.screenconnect.com/Host#Access/All%20Machines//{{agent.ScreenConnectGUID}}/Join
|
||||
#>
|
||||
|
||||
param (
|
||||
[string] $serviceName
|
||||
)
|
||||
|
||||
if (!$serviceName) {
|
||||
write-output "Variable not specified ScreenConnectService, please create a global custom field under Client called ScreenConnectService, Example Value: `"ScreenConnect Client (1327465grctq84yrtocq)`" `n"
|
||||
$ErrorCount += 1
|
||||
}
|
||||
|
||||
if (!$ErrorCount -eq 0) {
|
||||
exit 1
|
||||
}
|
||||
|
||||
$imagePath = Get-Itempropertyvalue "HKLM:\SYSTEM\ControlSet001\Services\$serviceName" -Name "ImagePath"
|
||||
$imagePath2 = ($imagePath -split "&s=")[1]
|
||||
$machineGUID = ($imagePath2 -split "&k=")[0]
|
||||
Write-Output $machineGUID
|
||||
Reference in New Issue
Block a user