PowerCLI Install error on powershell
Today I was trying to install PowerCli on my Windows 10 machine using below command
Install-Module -Name VMware.PowerCLI -RequiredVersion 11.1.0.11289667
Ended up with an error "PackageManagement\Install-Package : The following commands are already available on this system:'Get-Cluster,New-Cluster,Remove-Cluster'. This module 'VMware.VimAutomation.Core' may override the existing commands. If you still want to install this module"
Looked like some of the modules are conflicting.
As per MS document here "If the module being installed has the same name or version, or contains commands in an existing module, warning messages are displayed. After you confirm that you want to install the module and override the warnings, use the
So decided to use
Install-Module -Name VMware.PowerCLI -RequiredVersion 11.1.0.11289667
Ended up with an error "PackageManagement\Install-Package : The following commands are already available on this system:'Get-Cluster,New-Cluster,Remove-Cluster'. This module 'VMware.VimAutomation.Core' may override the existing commands. If you still want to install this module"
Looked like some of the modules are conflicting.
As per MS document here "If the module being installed has the same name or version, or contains commands in an existing module, warning messages are displayed. After you confirm that you want to install the module and override the warnings, use the
-Force
and -AllowClobber"
So decided to use
-AllowClobber and it worked!
Comments
Post a Comment