From ab50c9a8e9dec850b329a681a10b4449e67b5bcb Mon Sep 17 00:00:00 2001 From: Stephan Yelle Date: Tue, 24 Jun 2025 23:28:55 -0400 Subject: [PATCH] testing dattormm silent --- StackMonkey.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/StackMonkey.ps1 b/StackMonkey.ps1 index 58c670b..7415ee3 100644 --- a/StackMonkey.ps1 +++ b/StackMonkey.ps1 @@ -173,6 +173,8 @@ switch ($PSCmdlet.ParameterSetName) { # ──────────────────────────────────────────── # 2) Invoke the existing Install-DattoRMM cmdlet # ──────────────────────────────────────────── + + $cmd = @( Install-DattoRMM ` -ApiUrl $Global:ApiUrl ` -ApiKey $Global:ApiKey ` @@ -182,6 +184,9 @@ switch ($PSCmdlet.ParameterSetName) { -PushSiteVars:$PushSiteVars ` -InstallRMM:$InstallRMM ` -SaveCopy:$SaveCopy + ) -join ' ' + + Write-Host "DRY-RUN $cmd" return }