Tom's Hardware > Forum > Windows XP > Windows XP General Discussion > Start notepad from Linux script

Start notepad from Linux script

Forum Windows XP : Windows XP General Discussion - Start notepad from Linux script

Tom's Hardware: Over 1.4 million members in 6 different countries available to answer all your high-tech questions. Sign up now! Its free!
Word :    Username :           
 

Archived from groups: microsoft.public.windowsxp.work_remotely,microsoft.public.scripting.vbscript,microsoft.public.scripting.wsh,microsoft.public.win2000.termserv.apps (More info?)

 

Hi all,

I need to start a program, say 'notepad' on a remote Linux system on a
Windows box.

Can this be done with minimum extra software installed on a Windows box?

Thx

YuriW

Sponsored Links
Register or log in to remove.

Archived from groups: microsoft.public.windowsxp.work_remotely,microsoft.public.scripting.vbscript,microsoft.public.scripting.wsh,microsoft.public.win2000.termserv.apps (More info?)

 

On Tue, 21 Sep 2004 17:29:25 GMT, "Yuri Weinstein \(HotMail\)"
<yuriw_NOSPAM@hotmail.com> wrote:

>I need to start a program, say 'notepad' on a remote Linux system on a
>Windows box.

Notepad on Linux on Windows? Good luck there.

>Can this be done with minimum extra software installed on a Windows box?

I doubt you could start anything on a Linux system using VBScript or
WSH, but Perl or any of the Linux scripting languages may work. Try
asking in groups related to those scripting technologies.

Jeff

Reply to Anonymous

Archived from groups: microsoft.public.windowsxp.work_remotely,microsoft.public.scripting.vbscript,microsoft.public.scripting.wsh,microsoft.public.win2000.termserv.apps (More info?)

 

No - start notepad on a remote Windows box from a script running on Linux
system.

"Jeff Cochran" <jeff.nospam@zina.com> wrote in message
news:41608514.342119431@msnews.microsoft.com...
> On Tue, 21 Sep 2004 17:29:25 GMT, "Yuri Weinstein \(HotMail\)"
> <yuriw_NOSPAM@hotmail.com> wrote:
>
> >I need to start a program, say 'notepad' on a remote Linux system on a
> >Windows box.
>
> Notepad on Linux on Windows? Good luck there.
>
> >Can this be done with minimum extra software installed on a Windows box?
>
> I doubt you could start anything on a Linux system using VBScript or
> WSH, but Perl or any of the Linux scripting languages may work. Try
> asking in groups related to those scripting technologies.
>
> Jeff

Reply to Anonymous

Archived from groups: microsoft.public.windowsxp.work_remotely,microsoft.public.scripting.vbscript,microsoft.public.scripting.wsh,microsoft.public.win2000.termserv.apps (More info?)

 

Yuri Weinstein (HotMail) wrote:

> No - start notepad on a remote Windows box from a script running on
> Linux system.

If you got Cygwin (see http://cygwin.com) then you could set up rsh. I
think there's also an rsh from Microsoft. If that were so then it'd be
"rsh <windowsbox> notepad".
--
I thought about how mothers feed their babies with tiny little spoons
and forks so I wondered, what do Chinese mothers use? Toothpicks?

Reply to Anonymous

Archived from groups: microsoft.public.windowsxp.work_remotely,microsoft.public.scripting.vbscript,microsoft.public.scripting.wsh,microsoft.public.win2000.termserv.apps (More info?)

 

Yuri Weinstein (HotMail) schrieb:

> No - start notepad on a remote Windows box from a script running on Linux
> system.
>
> "Jeff Cochran" <jeff.nospam@zina.com> wrote in message
> news:41608514.342119431@msnews.microsoft.com...
>
>>On Tue, 21 Sep 2004 17:29:25 GMT, "Yuri Weinstein \(HotMail\)"
>><yuriw_NOSPAM@hotmail.com> wrote:
>>
>>
>>>I need to start a program, say 'notepad' on a remote Linux system on a
>>>Windows box.
>>
>>Notepad on Linux on Windows? Good luck there.
>>
>>
>>>Can this be done with minimum extra software installed on a Windows box?
>>
>>I doubt you could start anything on a Linux system using VBScript or
>>WSH, but Perl or any of the Linux scripting languages may work. Try
>>asking in groups related to those scripting technologies.
>>
>>Jeff
>
>
>

Maybe RMI can help you?

Reply to Anonymous

Archived from groups: microsoft.public.windowsxp.work_remotely,microsoft.public.scripting.vbscript,microsoft.public.scripting.wsh,microsoft.public.win2000.termserv.apps (More info?)

 

Peter Neumaier schrieb:

> Yuri Weinstein (HotMail) schrieb:
>
>> No - start notepad on a remote Windows box from a script running on Linux
>> system.
>>
>> "Jeff Cochran" <jeff.nospam@zina.com> wrote in message
>> news:41608514.342119431@msnews.microsoft.com...
>>
>>> On Tue, 21 Sep 2004 17:29:25 GMT, "Yuri Weinstein \(HotMail\)"
>>> <yuriw_NOSPAM@hotmail.com> wrote:
>>>
>>>
>>>> I need to start a program, say 'notepad' on a remote Linux system on a
>>>> Windows box.
>>>
>>>
>>> Notepad on Linux on Windows? Good luck there.
>>>
>>>
>>>> Can this be done with minimum extra software installed on a Windows
>>>> box?
>>>
>>>
>>> I doubt you could start anything on a Linux system using VBScript or
>>> WSH, but Perl or any of the Linux scripting languages may work. Try
>>> asking in groups related to those scripting technologies.
>>>
>>> Jeff
>>
>>
>>
>>
>
> Maybe RMI can help you?
>
Java Remote Method Invocation (Java RMI) -->
http://java.sun.com/products/jdk/rmi/

Reply to Anonymous

Archived from groups: microsoft.public.windowsxp.work_remotely,microsoft.public.scripting.vbscript,microsoft.public.scripting.wsh,microsoft.public.win2000.termserv.apps (More info?)

 

On Tue, 21 Sep 2004 21:55:00 GMT, "Yuri Weinstein \(HotMail\)"
<yuriw_NOSPAM@hotmail.com> wrote:

>No - start notepad on a remote Windows box from a script running on Linux
>system.

Then definitely not using VBScript or WSH, which won't run on Linux.

Jeff

>"Jeff Cochran" <jeff.nospam@zina.com> wrote in message
>news:41608514.342119431@msnews.microsoft.com...
>> On Tue, 21 Sep 2004 17:29:25 GMT, "Yuri Weinstein \(HotMail\)"
>> <yuriw_NOSPAM@hotmail.com> wrote:
>>
>> >I need to start a program, say 'notepad' on a remote Linux system on a
>> >Windows box.
>>
>> Notepad on Linux on Windows? Good luck there.
>>
>> >Can this be done with minimum extra software installed on a Windows box?
>>
>> I doubt you could start anything on a Linux system using VBScript or
>> WSH, but Perl or any of the Linux scripting languages may work. Try
>> asking in groups related to those scripting technologies.
>>
>> Jeff
>

Reply to Anonymous

Archived from groups: microsoft.public.windowsxp.work_remotely,microsoft.public.scripting.vbscript,microsoft.public.scripting.wsh,microsoft.public.win2000.termserv.apps (More info?)

 

Your are posting to too may groups at the same time.


Please do not treat this group ass.

---------------------------------------------------




"Jeff Cochran" <jeff.nospam@zina.com> wrote in message
news:4159e8f2.367684632@msnews.microsoft.com...
> On Tue, 21 Sep 2004 21:55:00 GMT, "Yuri Weinstein \(HotMail\)"
> <yuriw_NOSPAM@hotmail.com> wrote:
>
> >No - start notepad on a remote Windows box from a script running on Linux
> >system.
>
> Then definitely not using VBScript or WSH, which won't run on Linux.
>
> Jeff
>
> >"Jeff Cochran" <jeff.nospam@zina.com> wrote in message
> >news:41608514.342119431@msnews.microsoft.com...
> >> On Tue, 21 Sep 2004 17:29:25 GMT, "Yuri Weinstein \(HotMail\)"
> >> <yuriw_NOSPAM@hotmail.com> wrote:
> >>
> >> >I need to start a program, say 'notepad' on a remote Linux system on a
> >> >Windows box.
> >>
> >> Notepad on Linux on Windows? Good luck there.
> >>
> >> >Can this be done with minimum extra software installed on a Windows
box?
> >>
> >> I doubt you could start anything on a Linux system using VBScript or
> >> WSH, but Perl or any of the Linux scripting languages may work. Try
> >> asking in groups related to those scripting technologies.
> >>
> >> Jeff
> >
>

Reply to Name
Tom's Hardware > Forum > Windows XP > Windows XP General Discussion > Start notepad from Linux script
Go to:

There are 1293 identified and unidentified users. To see the list of identified users, Click here.

Please mind

You are about to answer a thread that has been inactive for more than 6 months.
If you still wish to proceed, please ensure that your posting is original and does not duplicate or overlap any prior responses to this thread.

Add a reply Cancel
Sponsored links
  • Ask the community now
  • Publish
Ad
They won a badge
Join us in greeting them