Summary: Use Windows PowerShell to provide alternate names to nouns in modules to avoid conflicts.
How can I use Windows PowerShell to avoid the problem of having conflicting cmdlet names in different modules?
Use the Prefix parameter with Import-Module. Prefix will take whatever letter segment you provide and
add that before the noun in all the cmdlets for a module you load. For example, if I want to make sure all the
cmdlets in the UEV module have HSG before the noun, I would type:
Import-Module UEV –prefix HSG