scloud icon indicating copy to clipboard operation
scloud copied to clipboard

Dell Command Update Install Script Update

Open 0xPCP opened this issue 2 years ago • 0 comments

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

0xPCP avatar Apr 08 '23 13:04 0xPCP