error on starting powershell -executionpolicy

Hi, I am getting the following error on one of the servers I tested (it worked fine on other servers), what could be run?

Thanks!

Yung

C:>powershell -ExecutionPolicy ByPass -File C:\Users\chengyu\Documents\UD_stat
us.ps1
Missing expression after unary operator ‘-’.
At line:1 char:2

  • -E <<<< xecutionPolicy ByPass -File C:\Users\chengyu\Documents\UD_status.ps1

C:&gt;

Does that server have PowerShell v1 installed, by chance? The syntax you posted should be working on PowerShell 2.0 or later, but I’m not sure about 1.0 (which I never used.)

Yes, that server is v1. So this command is not working for v1? The problem is that some of the servers has executionpolicy set to “restricted” (i will run the script on many servers and I don’t want to change the policy manually on each one, nor do i want to change the registry to relax the policy). I thought -ExecutionPolicy ByPass would be the best choice, but then this problem occurs.

Thanks for responding.

Yung

Unless you have a really compelling reason to stay at v1, you really should upgrade PowerShell. You don’t get all the remoting goodness until at least v2.

If I remember correctly ExecutionPolicy wasn’t available as a start-up parameter on PowerShell v1

OK, looks like I have to rewrite my program using VB… If I had control, i would have forced them to upgrade powershell version.

Thanks all for your help!