How to work on PoP Up window which comes up while uninstall of the application

Hi Team,

When i am trying to uninstall notepad++ using powershell, I am getting an popup to confirm from the user. How can i confirm via code so that notepad++ gets uninstalled automatically.

Thanks,
Chethan

Are you using the /S switch for the silent unattended uninstall?

In the future, please post the relevant portion of your script as opposed to making us guess what you might have done.

PowerShell isn’t really designed for GUI interaction. As suggested, try a silent uninstall.

I am using following script to uninstall Lync,

Set-ExecutionPolicy Unrestricted -Force
$programs = @(“Microsoft Lync Server 2013, Core Components”)
foreach ($program in $programs){
try{
$app = Get-WmiObject -Class win32_Product -ComputerName “localhost” | Where-Object {$.Name -match “$program”}
if ($app -ne $null){
$app.Uninstall()
Write-Host -ForegroundColor DarkYellow “$program has been uninstalled successsfully.”
}else{
Write-Host -ForegroundColor DarkYellow “$program could not be found.”
}
}catch [exception]{
Write-Host '$
is’ $_
Write-Host '$.GetType().FullName is’ $.GetType().FullName
}
}

but could not figure out how can I make it silent uninstall that would return value 0 instead of 1603