My PowerShell environment has two Expand-Archive
commands:
- Windows 10 -> a function from Microsoft.PowerShell.Archive (1.0.1.0)
- PowerShell Community Extension -> a CmdLet from Pscx (3.2.2)
My current environment defaults to the CmdLet from Pscx:
PS> (Get-Command Expand-Archive).ModuleName
Pscx
Is there any syntax (fully qualified name) to call a command from another module?
I do not want to unload Pscx.