On a local 64-bit machine, I can open 'PowerShell (x86)'. But if I do 'Enter-PSSession' to another machine running a 64-bit OS, it creates a 64-bit PowerShell.

In my scenario I need a 32-bit PowerShell session. How can I get one?

link|improve this question

45% accept rate
feedback

1 Answer

up vote 2 down vote accepted

I found the answer. You have to use the -ConfigurationName parameter, like this:

Enter-PSSession -ComputerName COMPUTERNAME -ConfigurationName Microsoft.PowerShell32

You can get the list of available configurations with:

Get-PSSessionConfiguration

Note that the configurations are specific to the remote machine. In my quick tests, a 32-bit OS only has Microsoft.PowerShell which is 32-bit, while a 64-bit OS has Microsoft-PowerShell for 64-bit and Microsoft-PowerShell32 for 32-bit.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.