Malwarebytes Anti malware delete

Hi

I am trying to delete Malwarebytes Anti Malware through Bigfix.

I am using:

waithidden “{pathname of system folder}\MSIExec.exe” /x {{35065F43-4BB2-439A-BFF7-0F1014F2E0CD}_is1} /qn

but it is giving 1619 exit code and not able to perform the delete.

Please help me with this.

What is the value of UninstallString of the registry key for the product?

Using msiexec with a GUID in this way indicates you should be using just the guid, excluding the _is1 suffix.

Good job on escaping the open curly bracket, but I think you may have too many closing brackets.

You may also need to disable wow64 redirection

You could try

action uses wow64 redirection false
waithidden “{pathname of system folder}\MSIExec.exe” /x {{35065F43-4BB2-439A-BFF7-0F1014F2E0CD} /qn

1 Like