From 086e02aba7141b01517d8a578b857fe57625440f Mon Sep 17 00:00:00 2001 From: syelle Date: Thu, 27 Nov 2025 22:49:41 -0500 Subject: [PATCH] change WebhookPassword back to string --- samy.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samy.ps1 b/samy.ps1 index 62da9ce..d245424 100644 --- a/samy.ps1 +++ b/samy.ps1 @@ -194,7 +194,7 @@ $ConfirmPreference = 'None' [Parameter(Mandatory,ParameterSetName='DattoFetch')] [Parameter(Mandatory,ParameterSetName='DattoInstall')] - [SecureString]$WebhookPassword, + [String]$WebhookPassword, [string]$WebhookUrl = $Global:DattoWebhookUrl, @@ -1505,7 +1505,7 @@ function Install-DattoRMM { [CmdletBinding(SupportsShouldProcess=$true, ConfirmImpact='Medium')] param ( [switch]$UseWebhook, - [SecureString]$WebhookPassword, + [String]$WebhookPassword, [string]$WebhookUrl = $Global:DattoWebhookUrl, [string]$ApiUrl, [string]$ApiKey,