I want to emulate PowerShell 3.0
From PowerShell v3 or v4 you can emulate v2 with this command:
%windir%\system32\WindowsPowerShell\v1.0\PowerShell.exe -version 2
$Host reveals: Version: 2.0
However, in PowerShell 4
%windir%\system32\WindowsPowerShell\v1.0\PowerShell.exe -version 3
$Host now reports: Version: 4.0 (I was hoping for 3:0)
Question: Is there any way of emulating PowerShell 3.0 from 4.0?