Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a few lines of PowerShell code that I would like to use as an automated script. The way I would like it to be able to work is to be able to call it using one of the following options:

  1. One command line that opens PowerShell, executes script and closes PowerShell (this would be used for a global build-routine)
  2. A file that I can double-click to run the above (I would use this method when manually testing components of my build process)

I have been going through PowerShell documentation online, and although I can find lots of scripts, I have been unable to find instructions on how to do what I need. Thanks for the help.

share|improve this question

3 Answers

up vote 6 down vote accepted

Save your script as a .ps1 file and launch it using powershell.exe, like this:

powershell.exe .\foo.ps1

Make sure you specify the full path to the script, and make sure you have set your execution policy level to at least "RemoteSigned" so that unsigned local scripts can be run.

share|improve this answer

Source for Matt's answer.

I can get it to run by double-clicking a file by creating a batch file with the following in it:

C:\WINDOWS\system32\windowspowershell\v1.0\powershell.exe LocationOfPS1File
share|improve this answer
Thanks for the article link! – Adam Neal Jun 10 '11 at 13:05

From http://blogs.msdn.com/b/jaybaz_ms/archive/2007/04/26/powershell-polyglot.aspx

If you're willing to sully your beautiful PowerShell script with a little CMD, you can use a PowerShell-CMD polyglot trick. Save your PowerShell script as a .CMD file, and put this line at the top:

@PowerShell -ExecutionPolicy Bypass -Command Invoke-Expression $('$args=@(^&{$args} %*);'+[String]::Join(';',(Get-Content '%~f0') -notmatch '^^@PowerShell.*EOF$')) & goto :EOF

If you need to support quoted arguments, there's a longer version, which also allows comments. (note the unusual CMD commenting trick of double @).

@@:: This prolog allows a PowerShell script to be embedded in a .CMD file.
@@:: Any non-PowerShell content must be preceeded by "@@"
@@setlocal
@@set POWERSHELL_BAT_ARGS=%*
@@if defined POWERSHELL_BAT_ARGS set POWERSHELL_BAT_ARGS=%POWERSHELL_BAT_ARGS:"=\"%
@@PowerShell -ExecutionPolicy Bypass -Command Invoke-Expression $('$args=@(^&{$args} %POWERSHELL_BAT_ARGS%);'+[String]::Join(';',$((Get-Content '%~f0') -notmatch '^^@@'))) & goto :EOF
share|improve this answer
Had to +1 this for creativity. Too bad microsoft doesn't see a need for this. – bigendian Jul 11 '12 at 3:10
1  
I modified to add -ExecutionPolicy Bypass. I figure by the time that line runs, the script is already executing, so you have to trust the PowerShell part as much as you trust the CMD part. – Jay Bazuzi Feb 11 at 22:10

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.