Question : create  a powershell process remotely ?

Hi ,
I am trying to implement creating a process for powershell remotely so that i can push my powershell script to be executed on the remote machine.
the code from i got from soemwhere else isd attached here
But this line
$LaunchArgs = $commandline,$null,$null,0
now on this the fourth parameter is processId that we should assign
But i want the processid to be returned automatically .i mean i don't want to give it .
and also i want to give it a directory on the remote machine as a place to log it
but how can i achieve this ?
Very Urgent ,
Thanks
Dekus
Code Snippet:
1:
2:
3:
4:
5:
$Class  = "Win32_Process"
  $Method = "Create"
  $MC = [WmiClass]"\\$Computer\ROOT\CIMV2:$Class"
  $LaunchArgs = $commandline,$null,$null,0
  $Result = $mc.PSBase.InvokeMethod($Method, $LaunchArgs)
Open in New Window Select All

Answer : create  a powershell process remotely ?

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
Random Solutions  
 
programming4us programming4us