Get-Process | ? {$_.ProcessName -eq "DellCommandUpdate"} | Stop-Process -Force
$Params = @(
"/qn"
"/norestart"
)
Start-Process "msiexec.exe" -ArgumentList $Params -Wait
I'm trying to uninstall Dell Command Update from a few laptops with older versions. I'm getting this error, below?

Msiexec.exerequires the path to the program you want to install or uninstall.You also need the
/xflag to specify that it is an uninstall, otherwise you're going to run it as an install. Try this:I'm inclined to consider this a duplicate question to the more generic "How do I run executable files with arguments in Powershell" question which has a similar answere here: https://stackoverflow.com/a/22247408/1618897
But, considering this is a new account, and you clearly showed what you've done, I think this is still valid.
EDIT: This answer runs asynchronously, see mklement0's answer for a 1:1 solution for a synchronous solution (which matches this question directly).