Maybe it is still a bit archaic until powershell v2, but schtasks.exe can be used to create job on the remote server which runs a batch job that enable the powershell execution policy, then run the other powershell code.
Make sure that the domain\user has "logon as batch job" right first.
schtasks /create /s $server /tn onfly /tr "c:\a.bat" /U adminuser /P password /ru domain\user /rp password /sc once /st 23:59:00
schtasks /run /s $Server /tn onfly
schtasks /delete /s $server /tn onfly /f
This link has more information for schtasks
http://msdn.microsoft.com/en-us/library/bb736357(VS.85).aspx