Hello all,
I am packaging oracle full client and it works good.
We do have another version of oracle in environment. I need to add to check installed applications on the machien and if it has previous version i need to exit.
How can i do that
Thanks in advance.
[Array]$AllApps = Get-InstalledApplication -Name 'Oracle Client*' -Wildcards
If ($AllApps) {
Write-log "Old Version found. Exiting"
Exit-Script
}
To check what is possible, search the function name “Get-InstalledApplication” in “AppDeployToolkitMain.ps1”, do not edit the file!
Some questions were answered by the help file.