Hi
Just noticed that there may be an a problem with the Execute-MSI function as all the uninstalls run silently.
The script is
If ($deployModeSilent -eq $true) {
Else {
Unless it is set somewhere else that I can't see.
Thanks
Sue
Just noticed that there may be an a problem with the Execute-MSI function as all the uninstalls run silently.
The script is
Set the installation Parameters
$msiUninstallDefaultParams = $configMSISilentParams
If ($deployModeSilent -eq $true) {
$msiInstallDefaultParams = $configMSISilentParams
}
Else {
$msiInstallDefaultParams = $configMSIInstallParams
}
But think it should beIf ($deployModeSilent -eq $true) {
$msiInstallDefaultParams = $configMSISilentParams
$msiUninstallDefaultParams = $configMSISilentParams
}Else {
$msiInstallDefaultParams = $configMSIInstallParams
$msiUninstallDefaultParams = $configMSIUninstallParams
}Unless it is set somewhere else that I can't see.
Thanks
Sue