I am trying to run the a .cmd file that calls a Powershell script from the command prompt and I am getting the below error:
Management_Install.ps1 cannot be loaded because the execution of scripts is disabled on this system.
I have ran set-executionpolicy unrestricted and when I run get-executionpolicy from Powershell I get unrestricted back
//Output from Powershell
PS C:\Users\Administrator> get-executionpolicy
Unrestricted
//Output from Dos
C:\Projects\Microsoft.Practices.ESB\Source\Samples\Management Portal\Install\Scr
ipts>powershell .\Management_Install.ps1 1
WARNING: Running x86 PowerShell...
File C:\Projects\Microsoft.Practices.ESB\Source\Samples\Management Portal\Install\Scripts\Management_Install.ps1 cannot be loaded because the execution of scripts is disabled on this system. Please see "get-help about_signing" for more details.
At line:1 char:25
.\Management_Install.ps1 <<<< 1
CategoryInfo : NotSpecified: (:) [], PSSecurityException
FullyQualifiedErrorId : RuntimeException
C:\Projects\Microsoft.Practices.ESB\Source\Samples\Management Portal\Install\Scripts>pause
Press any key to continue . . .
The system is Windows Server 2008 R2.
Any idea's to what I am doing wrong?

powershellas administrator? – ChristopheD Oct 27 '10 at 21:44