Error message: set-psReadLineOption is not recognized …
32-bit versions of of
PowerShell don't seem to have PSReadLine installed by default so that error messages like
The term 'set-psReadLineOption' is not recognized as the name of a cmdlet, function, script file, or operable program.
are thrown.
I was able to install PSReadLine (in an admin session) with
C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe -c 'install-packageProvider -name nuGet -force'
C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe -c 'find-module psreadline | install-module -force'