From ac7bef501932cb293776879f6a075c0197377c96 Mon Sep 17 00:00:00 2001 From: dyoder Date: Thu, 21 Jan 2021 12:41:31 -0500 Subject: [PATCH] fixed incorrect type assignment for $INTEGRATOR_ID --- Install-AteraAgent.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Install-AteraAgent.ps1 b/Install-AteraAgent.ps1 index 6b7029d..a952750 100644 --- a/Install-AteraAgent.ps1 +++ b/Install-AteraAgent.ps1 @@ -1,6 +1,6 @@ param( [Parameter(Mandatory=$true)][int]$CUSTOMER_ID, - [Parameter(Mandatory=$true)][int]$INTEGRATOR_ID, + [Parameter(Mandatory=$true)][string]$INTEGRATOR_ID, [Parameter(Mandatory=$false)][string]$AGENT_FILENAME="EmberkomAgentSetup.exe" )