From 23d1df1a090afdaee0359917bcbdb413e9ad000f Mon Sep 17 00:00:00 2001 From: Corbin Date: Tue, 4 Jun 2024 13:52:06 -0400 Subject: [PATCH] Replace quotes to expand variables in AgentInstallerUri --- rmm/automate/Uninstall-Automate.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rmm/automate/Uninstall-Automate.ps1 b/rmm/automate/Uninstall-Automate.ps1 index 84f83c9..b40e45c 100644 --- a/rmm/automate/Uninstall-Automate.ps1 +++ b/rmm/automate/Uninstall-Automate.ps1 @@ -1,7 +1,7 @@ $PackagePath = 'C:\Packages' $AgentUninstallFile = 'Agent_Uninstaller.zip' -$AgentUninstallUri = 'https://s3.amazonaws.com/assets-cp/assets/$AgentUninstallFile' +$AgentUninstallUri = "https://s3.amazonaws.com/assets-cp/assets/$AgentUninstallFile" $AgentUninstallPath = Join-Path -Path $PackagePath -ChildPath $AgentUninstallFile If (!(Test-Path -PathType Container $PackagePath)) {