Powershell's Invoke-Expression missing param - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T06:32:12Zhttp://stackoverflow.com/feeds/question/12501http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/12501/powershells-invoke-expression-missing-param1Powershell's Invoke-Expression missing paramGuy2008-08-15T17:26:44Z2009-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#125252Answer by Kev for Powershell's Invoke-Expression missing paramKev2008-08-15T17:38:50Z2008-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#125360Answer by Guy for Powershell's Invoke-Expression missing paramGuy2008-08-15T17:47:35Z2008-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#127801Answer by Steven Murawski for Powershell's Invoke-Expression missing paramSteven Murawski2008-08-15T21:25:02Z2008-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&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#139440Answer by slipsec for Powershell's Invoke-Expression missing paramslipsec2008-08-17T21:37:37Z2008-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#689332Answer by Jaykul for Powershell's Invoke-Expression missing paramJaykul2008-09-16T02:35:36Z2008-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#5751132Answer by Jeffrey Snover - MSFT for Powershell's Invoke-Expression missing paramJeffrey Snover - MSFT2009-02-22T15:59:14Z2009-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> $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#15514820Answer by aleksandar for Powershell's Invoke-Expression missing paramaleksandar2009-10-11T19:08:51Z2009-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>