Top "Powershell-remoting" questions

The ability to create a remote connection, in an other way than using WMI, is the most important difference between PowerShell v 1.0 and 2.0.

Clickable hyperlink on PowerShell's console output

I'm having some issues with the following PowerShell script, could you please help me with that? What I'm trying to …

powershell powershell-remoting
why does a scriptblock passed as an argument in invoke-commands argumentlist fail?

function test-scriptblock { 1..10 } function caller ([scriptblock]$runthis) { & $runthis } the following works fine. caller -runthis ${function:test-scriptblock} this doesn't work invoke-command …

powershell powershell-2.0 powershell-remoting
How to run multiple commands via Invoke-Command on remote server

In the below example, only the Get-Process in my scriptblock is being executed. "deh" does not print for some reason …

powershell powershell-remoting invoke-command