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.

How does the behaviour differ between & powershell .\other.ps1 and & .\other.ps1?

Edit: In particular, how do they differ if there's an error in other.ps1?

share|improve this question

1 Answer

You get another PowerShell process in the former case and the script cannot read variables defined in your current session:

PS> $foo = 'bar'
PS> 'Write-Host $foo'|Set-Content x.ps1
PS> & powershell .\x.ps1

PS> & .\x.ps1
bar
share|improve this answer
Thanks. Is there a difference in error handling too? – Colonel Panic Jul 9 '12 at 11:45
1  
@ColonelPanic: Just like variables, exceptions will not cross process boundaries. Change the contents of x.ps1 to throw error, and compare the output of try { powershell.exe ./x.ps1; "success? $?; $LastExitCode" } catch { "caught $_; success? $?; $LastExitCode" } and try { ./x.ps1; "success? $?; $LastExitCode" } catch { "caught $_; success? $?; $LastExitCode" }. – Emperor XLII Aug 18 '12 at 13:27

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.