Added Uninstall for 10.3.1.509

This commit is contained in:
2025-09-15 11:59:41 -04:00
parent 2e34222036
commit ce282902ec
2 changed files with 15 additions and 0 deletions

View File

@@ -122,6 +122,20 @@ function Install-ADTDeployment
##================================================ ##================================================
$adtSession.InstallPhase = "Pre-$($adtSession.DeploymentType)" $adtSession.InstallPhase = "Pre-$($adtSession.DeploymentType)"
## Remove any previous versions of GraphPad Prism 10
Write-ADTLogEntry "Checking for previous versions of GraphPad Prism 10."
$previousPrism = Get-ADTApplication -ProductCode '{760B068C-3ED5-4D67-A66C-3377E7565030}'
if ($previousPrism)
{
Write-ADTLogEntry "A previous version of GraphPad Prism 10 was found. Uninstalling it now."
Start-ADTMsiProcess -Action 'Uninstall' -ProductCode '{760B068C-3ED5-4D67-A66C-3377E7565030}' -ArgumentList '/qn'
}
else
{
Write-ADTLogEntry "No previous versions of GraphPad Prism 10 were found."
}
##================================================ ##================================================
## MARK: Install ## MARK: Install
##================================================ ##================================================

1
SnapGene Submodule

Submodule SnapGene added at a3a87e2f45