Dell Command Update Install Script Update
We ran into an issue trying to deploy the Dell Command Update application, if different Dell Update utilities are installed it will fail the install.
Currently the install script checks for other installations of Dell Command with the following lines: Search for UWP App edition and uninstall $DellCUPackage = Get-Package "Dell Command*" -ErrorAction SilentlyContinue if($DellCUPackage){$DellCUPackage | Uninstall-Package -Force}
I'd recommend adding the following line to include removing all of the Dell Update utilities that may cause Dell Command install to fail:
$DellCUPackage = Get-Package "Dell Update*" -ErrorAction SilentlyContinue if($DellCUPackage){$DellCUPackage | Uninstall-Package -Force}
Great blog/repo!
~Phil