Anyone can help me with the command to uninstall Google chrome (EXE) silently ?
I already tried this: Uninstall-ADTApplication -Name 'Google Chrome' -ApplicationType 'EXE' -ArgumentList "--uninstall --channel=stable --system-level"
You can’t just tack on msiexec.exe arguments and hope for the best. Since there’s no QuietUninstallString, you’ll have to determine the exact silent arguments it needs for your -ArgumentList parameter.
I suspect you need to append --force-uninstall on the end of your arguments, so by retrieving the actual uninstall command held in the registry your uninstall command should look something like this (N.B. This is untested):