You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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
The text was updated successfully, but these errors were encountered: