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.

Guys and Gals, a really stupid question:

How do I run a PowerShell script?

  • I have a script named myscript.ps1
  • I have all the necessary frameworks installed
  • I set that execution policy thing
  • I have followed the instructions on this MSDN help page and am trying to run it like so: powershell.exe 'C:\my_path\yada_yada\run_import_script.ps1' (with or withot --noexit)

which returns exactly nothing, except that the file name is output. No error, no message, nothing. Oh, when I add -noexit, the same thing happens but I remain within Powershell, and have to exit manually.

The ps1 file is supposed to run a program, and return the error level dependant on that program's output. But I'm quite sure I'm not even getting there yet.

What am I doing wrong?

share|improve this question
4  
Guys and Gals... mostly guys – pinouchon Oct 3 '11 at 23:08

6 Answers

up vote 55 down vote accepted
  1. Launch PowerShell
  2. Navigate to the directory where the script lives

    PS> cd C:\my_path\yada_yada\ (enter)
    
  3. Execute the script:

    PS> .\run_import_script.ps1 (enter)
    

What am I missing??

Or: you can run the PowerShell script from cmd.exe like this:

powershell -noexit "& "C:\my_path\yada_yada\run_import_script.ps1" (enter)

according to this blog post here

Or you could even run your Powershell script from your C# app :-)

Asynchronously execute PowerShell scripts from your C# application

share|improve this answer
This indeed works, but I need to do this from within a batch file. Obviously, my way of calling powershell.exe and then the script file is somehow screwed up. Do you have any idea how to modify it? – Pekka 웃 Jan 9 '10 at 22:26
4  
Your blog post link did it. I have to use powershell -noexit "& "C:\yada_yada\run_import_script.ps1" (notice the three double quotes) I don't really understand why, but at this point, I don't really care :) Thanks a lot! – Pekka 웃 Jan 9 '10 at 22:32
you're right - I posted the wrong command line - the one that doesn't work :-) The one that does work is in the blog post and I fixed my wrong post now :-) – marc_s Jan 9 '10 at 22:33
3  
What exactly does the "& do? – BlueRaja - Danny Pflughoeft Jan 25 '12 at 2:00
According to technet.microsoft.com/en-us/library/ee176949.aspx, the '&' is for "If you actually want to execute that string value (that is, if you want to run the script whose path is enclosed in double quotes) you need to preface the path with the Call operator (the ampersand)." – Darkwater23 May 29 '12 at 14:32
show 2 more comments

If you are on PowerShell 2.0 use PowerShell.exe's -File parameter to invoke a script from another environent like cmd.exe e.g.:

Powershell.exe -File C:\my_path\yada_yada\run_import_script.ps1
share|improve this answer
Is there a way to add parameters to such an invocation? – Alexander Groß Feb 1 '10 at 23:25
2  
You should just be able to trail the args after the script file path. From the PowerShell.exe usage - [-File <filePath> <args>] – Keith Hill Feb 2 '10 at 1:32

If you want to run a script without modifying the default script execution policy, you can use the bypass switch when launching Windows PowerShell.

powershell [-noexit] -executionpolicy bypass -File <Filename>
share|improve this answer

I've had the same problem, and tried and tried... finally i used:

powershell.exe -noexit "& 'c:\Data\ScheduledScripts\ShutdownVM.ps1'"

And put this line in a batch-file, and this works.

share|improve this answer

If you only have powershell 1.0, this seems to do the trick well enough.

   powershell -command - < c:\mypath\myscript.ps1

It pipes the script file to the powershell command line.

share|improve this answer
this was good for me – Naeem Sarfraz Jan 24 '12 at 16:10

try using this.

powershell -File <Filename>
share|improve this answer
powershell attempted to run the filename as a command, didn't work for me – Naeem Sarfraz Jan 24 '12 at 16:11
Worked for me, additionally this is of the same form as the later answer from @Keith Hill. Though Keith provided a better write-up. – vossad01 Aug 21 '12 at 19:30

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.