in reply to How to run a process on an NT server from a client computer
Win32::OLE will do this, anticipating all the participating machines are Win32 and IIRC if excel is all ready running on the destination box. From perldoc:
To create an object via DCOM on a remote server you can use an array reference in place of PROGID. The referenced array must contain the machine name and the program id or class id. For example: my $obj = Win32::OLE->new('my.machine.com', 'Program.Id');
You can also use rcmd from the NT/2K Resource Kit. rcmd is a faux-telnet client-server bit. It is light-weight and highly insecure, but hey ...
You could use VNC. You could write a client-server perl app. TIMTOWTDI. YMMV.
HTH
--
idnopheq
Apply yourself to new problems without preparation, develop confidence in your ability to to meet situations as they arrise.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: How to run a process on an NT server from a client computer
by Anonymous Monk on Sep 05, 2001 at 02:33 UTC | |
by John M. Dlugosz (Monsignor) on Sep 05, 2001 at 02:55 UTC |