4

I'm trying to remotely execute a PowerShell script using PSEXEC. The PowerShell script is called via a .cmd batch file. The reason we do this is to change the execution policy, run the powershell script then reset the execution policy again:

On the remote server do-tasks.cmd looks like:

powershell -command "&{ set-executionpolicy unrestricted}"  
powershell DoTasks.ps1  
powershell -command "&{ set-executionpolicy restricted}"  

The PowerShell script DoTasks.ps1 just does this for now:

Write-Output "Hello World!"

Both of these scripts live in c:\windows\system32 (for now) just so they're on the PATH.

On the originating server I do this:

psexec \\web1928 -u administrator -p "adminpassword" do-tasks.cmd

When this runs I get the following response at the command line:

c:\Windows\system32>powershell -command "&{ set-executionpolicy unrestricted}"

and the script runs no further.

I can't ctrl-c to break the script and I just see ^C characters, I can type input from the keyboard and the characters are echoed to console.

On the remote server I see that PowerShell.exe and CMD.exe are running in Task Manager's Process tab. If I end these processes then control returns to the command line on the originating server.

I have tried this with just a simple .cmd batch file with a @echo hello world and it works just fine.

Running do-tasks.cmd on the remote server via an RDP session works ok as well.

The originating server is running Windows 2003 SP2, the remote server is running Windows 2008 SP2.

Why is my remote batch file getting stuck when executing via PSEXEC?

Kev
  • 7,777
  • 17
  • 78
  • 108
  • Are you somehow being forced to use psexec or can you use winrm instead? What Os is this running on? – Jim B Apr 22 '10 at 23:39
  • @Jimb - The originating server is running Windows 2003 SP2, the remote server is running Windows 2008 SP2. I'm not constrained to `PSEXEC`. WinRM is a new one on me, will take a look. – Kev Apr 22 '10 at 23:53

3 Answers3

11

This is a common issue with POSH. The problem is stdin hangs. Try this:

c:\Windows\system32>powershell -command "&{ set-executionpolicy unrestricted}" < NUL
Mark Henderson
  • 68,316
  • 31
  • 175
  • 255
SonOfNun
  • 211
  • 1
  • 4
5

Most of the answers in the forums solve this with a workaround like echoing and piping so that powershell gets some input from STDIN.

But there exits a solution within powershell. Just start powershell with the option -inputformat none like:

powershell -inputformat none -command ...

This solves the hanging issue via psexec for Win2003 and Win2008.

Walter Ebner
  • 51
  • 1
  • 1
0

Since the server is running 2k8 I would suspect UAC is causing issues. I would also suggest using winrm instead of psexec. Powershell remoting was one of the best new features of powershell 2.0

Jim B
  • 23,938
  • 4
  • 35
  • 58
  • I wouldn't expect the local Administrator account to hang on a UAC hidden prompt, a regular account that's a member of administrators maybe. That said I'll take a look at winrm in the fresh light of day. – Kev Apr 23 '10 at 00:18
  • This is one thing I've not dived into. PowerShell.exe was designed to not be directly invoked remotely, in certain circumstances. – Marco Shaw Apr 24 '10 at 00:48