I have PowerShell v2.0 installed and, in addition, PSCX installed. PSCX is a PowerShell community extension ( http://pscx.codeplex.com/Wikipage ).
It seems that I have two cmdlets called Start-Process, and I assume that one of them is original and the other from PSCX. When I call Start-Process, the PSCX cmdlet starts. How to get PowerShell to run the original version instead?
Useful evidence:
When I run get-help start-process, I get:
Name Category Synopsis
Start-Process Cmdlet PSCX Cmdlet: Starts a new process.
Start-Process Cmdlet Starts one or more processes on the local computer.
When I run get-command start-process, I get:
CommandType Name Definition
Cmdlet Start-Process Start-Process [[-Path] <String>] [[-Arguments] <String>] [...
source
share