Upon the first launch, Toad will typically prompt you with a "Licensing" window. If it does not, go to Help > Licensing from the top menu. Enter Your Credentials:
$regPath = "HKLM:\SOFTWARE\WOW6432Node\Quest Software\Toad for Oracle\Licensing" if (Get-ItemProperty -Path $regPath -Name "SiteMessage" -ErrorAction SilentlyContinue) Write-Host "Site message install successful" -ForegroundColor Green else Write-Host "License missing - manual intervention needed" -ForegroundColor Red toad for oracle license key and site message install
Upon the first launch, Toad will typically prompt you with a "Licensing" window. If it does not, go to Help > Licensing from the top menu. Enter Your Credentials:
$regPath = "HKLM:\SOFTWARE\WOW6432Node\Quest Software\Toad for Oracle\Licensing" if (Get-ItemProperty -Path $regPath -Name "SiteMessage" -ErrorAction SilentlyContinue) Write-Host "Site message install successful" -ForegroundColor Green else Write-Host "License missing - manual intervention needed" -ForegroundColor Red