Skip to content

Dell Command Update Install Script Update #12

Description

@0xPCP

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions