How can I make PowerShell run the original Start-Process cmdlet rather than the PSCX Start-Process c
        Posted  
        
            by urig
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by urig
        
        
        
        Published on 2010-04-01T15:17:58Z
        Indexed on 
            2010/04/01
            16:23 UTC
        
        
        Read the original article
        Hit count: 524
        
I have PowerShell v2.0 installed and on top of that, PSCX is installed. PSCX is the PowerShell Community Extensions (http://pscx.codeplex.com/Wikipage).
It seems that I have two cmdlets called Start-Process installed and I'm guessing one is the original and the other is from PSCX. When I invoke Start-Process, the PSCX cmdlet is made to run. How can I make PowerShell run the original version instead?
Helpful 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>] [...
        © Stack Overflow or respective owner