From 183bafcba15acbf10b0778eedc2c45d35eceaa8c Mon Sep 17 00:00:00 2001 From: David Yoder Date: Wed, 18 Jan 2023 19:32:05 -0500 Subject: [PATCH] remove the uninstall procedure until it's fixed --- Install-SketchUp.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Install-SketchUp.ps1 b/Install-SketchUp.ps1 index adf9be1..7386828 100644 --- a/Install-SketchUp.ps1 +++ b/Install-SketchUp.ps1 @@ -9,9 +9,9 @@ If ( IsAdmin ) # Make sure the URL is valid before we do anything If ( IsURLValid $URL ) { - # Uninstall all versions of SketchUp - $APP_NAME = "SketchUp*" - Run-Script -LivePSScript Uninstall-MSI + # TODO: Uninstall all versions of SketchUp + #$APP_NAME = "SketchUp*" + #Run-Script -LivePSScript Uninstall-MSI # Set the local file name to download to $FILE = '{0}{1}.exe' -f (GetTempPath),(Split-Path $URL -Leaf)