The workaround that's been suggested to me is to use the Win32_ScheduledJob class to start the process.
--------------------
I'd like to create a process on a remote computer (both:
WinXP Pro) with the following script:
RemoteMaschine = "PC1-WXP"
Set Process = GetObject("winmgmts://" & RemoteMaschine
& "/root/cimv2:Win32_Process")
Process.Create "calc.exe", Null, Null, procID
MsgBox("Process ID: " & procID)
After executing the script, the program is in the process
list, but I don't see the window/GUI of this program.
Does anybody know a method to start on a remote computer
a program with the window / GUI ??
--
This posting is provided "AS IS" with no warranties, and confers no rights. Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
Note: For the benefit of the community-at-large, all responses to this message are best directed to the newsgroup/thread from which they originated.