Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dell Command Update Install Script Update #12

Open
0xPCP opened this issue Apr 8, 2023 · 0 comments
Open

Dell Command Update Install Script Update #12

0xPCP opened this issue Apr 8, 2023 · 0 comments

Comments

@0xPCP
Copy link

0xPCP commented Apr 8, 2023

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant