PowerShell-Statistics
PowerShell-Statistics copied to clipboard
Install-Module failed: installation would clobber Measure-Object
tried to install this module using Install-Module -name Statistics and I got a warning that it would clobber the Measure-Object cmdlet. Considering the Measure-Object cmdlet is shipped with Powershell this was unexpected and I'm surprised the simplest install collides with a core module. Am I doing something wrong?

When I created the first set of PowerShell modules I thought it was a good idea to add features to existing cmdlets by creating a proxy cmdlet. What you are seeing is correct although I regret going down that lane. Unfortunately, I will not be able to update this module in the near future to fix the design.
I recommend you install the module into your profile (Install-Module -Scope User -Name Statistics) to test it. If you have any objections concerning my additions to Measure-Object, I recommend you unload the module using Remove-Module -Name Statistics or uninstall it.