Might try asking them here in dedicated forums.
https://success.trendmicro.com/forum/s/
--please don't forget to upvote
and Accept as answer
if the reply is helpful--
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm trying to make a script to uninstall trend micro agent with GPO so I can apply this action to all computers to my organization.
But it asks for a password to uninstall it.
Do you have an ideas how to do it ?
Might try asking them here in dedicated forums.
https://success.trendmicro.com/forum/s/
--please don't forget to upvote
and Accept as answer
if the reply is helpful--
Hello there,
Was this application installed using GPO ?
You can Uninstall using the application using GPO editor -> Edit- > Software Settings -> All Tasks, and then click Remove -> Click Immediately uninstall the software from users and computers, and then click OK.
Alternatively you can use below PowerShell script and run it from Server to Uninstall it Remotely.
$computerNames = @("ComputerName1", "rName2", "rName3")
$appName = "AnyDesk"
$yourAccount = Get-Credential
ForEach ($computerName in $computerNames) {
Invoke-Command -ComputerName $computerName -Credential $yourAccount -ScriptBlock {
Get-WmiObject Win32_product | Where {$.name -eq $appName} | ForEach {
$.Uninstall()
}
}
}
--------------------------------------------------------------------------------------------------------------------------------------
--If the reply is helpful, please Upvote and Accept it as an answer--