Powershell's Invoke-Expression missing param - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T06:32:12Z http://stackoverflow.com/feeds/question/12501 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/12501/powershells-invoke-expression-missing-param 1 Powershell's Invoke-Expression missing param Guy 2008-08-15T17:26:44Z 2009-10-11T19:08:51Z <p>I thought that I had the latest CTP of Powershell 2 but when I try the command: invoke-expression –computername Server01 –command 'get-process powershell'</p> <p>I get an error message: A parameter cannot be found that matches parameter name 'computername'.</p> <p>So the question is: How can I tell which version of PowerShell I have installed? And what the latest version is?</p> http://stackoverflow.com/questions/12501/powershells-invoke-expression-missing-param/12525#12525 2 Answer by Kev for Powershell's Invoke-Expression missing param Kev 2008-08-15T17:38:50Z 2008-08-15T17:43:57Z <p>$host.version.tostring() will return the version number.</p> <p>RTM of v1 is 1.0.0.0</p> <p>Couldn't honestly tell you what the latest version of the previews are because I haven't had a chance to play yet.</p> <p>HTH</p> http://stackoverflow.com/questions/12501/powershells-invoke-expression-missing-param/12536#12536 0 Answer by Guy for Powershell's Invoke-Expression missing param Guy 2008-08-15T17:47:35Z 2008-08-15T17:47:35Z <p>Thanks - just ran that and got 2.0</p> <p>Just found the CTP and see that it was published on 11/5/2007 so I now know that I have the latest.</p> <p>It's a mystery to me why that param is not recognized.</p> http://stackoverflow.com/questions/12501/powershells-invoke-expression-missing-param/12780#12780 1 Answer by Steven Murawski for Powershell's Invoke-Expression missing param Steven Murawski 2008-08-15T21:25:02Z 2008-08-15T21:25:02Z <p>The latest CTP is CTP2 released on 05/02/08 and can be found <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=7C8051C2-9BFC-4C81-859D-0864979FA403&amp;displaylang=en" rel="nofollow" title="Araxis Merge">here</a>. Remoting requires WinRM to be installed on both the calling machine and the target machine. Included in the CTP is a script to configure WS-Management called Configure-WSMan.ps1. </p> <p>This command should get you the version number of PowerShell that you have installed. Get-Command "$PSHome\powershell.exe" | Format-List FileVersionInfo V1.0 is 6.0.5430.0 CTP2 is 6.1.6585.1</p> <p>I don't have the version number for the first CTP on hand, but I can find it if you really need it.</p> http://stackoverflow.com/questions/12501/powershells-invoke-expression-missing-param/13944#13944 0 Answer by slipsec for Powershell's Invoke-Expression missing param slipsec 2008-08-17T21:37:37Z 2008-08-17T21:37:37Z <p>I'm guessing that this is a change to the cmdlet made during the configuration process Configure-Wsman.ps1. I don't have an environment setup to test right now, but I'm guessing something went wrong with the configuration. I can verify that on XP the parameter is not available (duh). I'd assume that you will find the same on Vista/08 without the configuration completed.</p> http://stackoverflow.com/questions/12501/powershells-invoke-expression-missing-param/68933#68933 2 Answer by Jaykul for Powershell's Invoke-Expression missing param Jaykul 2008-09-16T02:35:36Z 2008-09-16T02:35:36Z <p>The problem is that from CTP 1 to CTP2, they switched up the Invoke stuff, all the remoting stuff is done through <code>Invoke-Command</code> now, and <code>Invoke-Expression</code> is solely for turning a string into a script ;)</p> <p>P.S.: If you're on v2 you can run <code>$PSVersionTable</code> to see a list of versions including the CLR and Build versions.</p> http://stackoverflow.com/questions/12501/powershells-invoke-expression-missing-param/575113#575113 2 Answer by Jeffrey Snover - MSFT for Powershell's Invoke-Expression missing param Jeffrey Snover - MSFT 2009-02-22T15:59:14Z 2009-02-22T15:59:14Z <p>From last night's build (which means you might have this in CTP3 but if not, you'll get it in the next public drop):</p> <pre><code>[4120:0]PS&gt; $psversiontable Name Value ---- ----- CLRVersion 2.0.50727.3521 BuildVersion 6.1.7047.0 PSVersion 2.0 WSManStackVersion 2.0 PSCompatibleVersions {1.0, 2.0} SerializationVersion 1.1.0.1 PSRemotingProtocolVersion 2.0 </code></pre> <p>Experiment! Enjoy! Engage!</p> <p>Jeffrey Snover [MSFT] Windows Management Partner Architect</p> http://stackoverflow.com/questions/12501/powershells-invoke-expression-missing-param/1551482#1551482 0 Answer by aleksandar for Powershell's Invoke-Expression missing param aleksandar 2009-10-11T19:08:51Z 2009-10-11T19:08:51Z <h1>If the $PSVersionTable variable doesn't exist, then you are running V1.</h1> <h1>If it exists, then the version will be available as $PSVersionTable.PSVersion.</h1> <p>function Get-PSVersion {<br /> if (test-path variable:psversiontable) {$psversiontable.psversion} else {[version]"1.0.0.0"}<br /> } </p>