I posted similar question time ago where I asked: can we change location of Welcome message which appears if some process detected to be running and user @anna gave me an option to sort this out but by adding:
$installPrompt.StartPosition = ‘Manual’
$installPrompt.Location = New-Object -TypeName System.Drawing.Point -ArgumentList @(1000, 700) # Example coordinates for bottom right
but that didn`t really work because we all have monitors with different shapes and sizes so by playing with Arguments it mess up even more so I was thinking maybe there is actual parameter like -BottomRight location and my Welcome message would appear there same as like Success on install or any other prompts. Any suggestions appreciated.