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?