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

I'm very awkward in PowerShell and I use it only at home for my own simple tasks under my Windows XP where no available upgrade to PS2. Next test show that my PowerShell 1.0 use MTA mode by default.

[threading.thread]::CurrentThread.GetApartmentState()

And such call like...

PowerShell.exe –STA c:\scripts\file.ps1

...always fail with error:

Missing expression after unary operator '-'. At line:1 char:2 + -S <<<< TA c:\scripts\file.ps1

Looks like my PS1 not recognize –STA switch. What I do wrong? Is there any way at all to run my script in STA mode in PS1?

share|improve this question
here you can download powershell 2.0 for XP: support.microsoft.com/kb/968929/en-us – C.B. Feb 6 at 7:46
here you can find something usefully for sta in v1.0 : get-powershell.com/post/2008/11/07/… – C.B. Feb 6 at 8:14
@C.B. - PS2 not available for 64bit XP (my case), I s'd mention this, but many thanks for your comments, you confirm my fears that I'm in big trouble. – Panayot Karabakalov Feb 6 at 18:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.