Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm unable to call powershell with start-process when i'm passing both scriptfile and parameters

start-process powershell d:\startTask.ps1 "param1" "param2" "param3"

My startTask.ps1 looks like below

param([string]$x="default",[string]$y="default",[string]$z="default")
echo "x: $x"
echo "y: $y"
echo "z: $z"
share|improve this question

2 Answers

up vote 2 down vote accepted

try:

Start-Process Powershell -ArgumentList "-noexit","-File d:\startTask.ps1 param1 param2 param3"
share|improve this answer
1  
The key thing to note here is the use of -ArgumentList. The OP's arguments are all going to the command he's calling, Start-Process, and not Powershell like he thinks. – SpellingD Nov 9 '12 at 17:46
& powershell d:\startTask.ps1 "param1" "param2" "param3"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.