Aix server to windows Pc


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Aix server to windows Pc
# 1  
Old 11-29-2006
Aix server to windows Pc

Dear Sir
How to write a small script which would permit to aix server to exchange information with windows pc after a define interval of time.

My aix server is connected to a network and after preparing messages (mosthly txt message) with my windows pc station the script should be able to go and carry this message to a specify location of my server. The same thing when the server received a message for my pc the same script should carry it from the server to my windows work station maybe after each 30 minutes or less depend of the flow of messages.

Thank you
sobnc
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Connect from AIX 5.x to windows Server 2000 Shared Folder

Hi, I followed this procedure in order to mount in AIX a shared folder in windows server 2000. https://www-304.ibm.com/support/docview.wss?uid=isg3T1012550 Ive tested the shared folder from other windows Server, and its fine. What Ive do in AIX is: Logon as root Under /Home/spss/ I... (2 Replies)
Discussion started by: trevian3969
2 Replies

2. UNIX for Advanced & Expert Users

DOS/VB script of Remote Windows Server from AIX

Hi We use to run DOS and VB script in Windows Server . Now the requirement is to trigger the same script from AIX server by shell script , thus it would be executed in Remote Windows Server . Is it possible ( though SSH or any other way ) ? Thanks (2 Replies)
Discussion started by: Sourajit Seth
2 Replies

3. AIX

How can we share a AIX drive on to Windows 2012 server?

Hi, How can we share a AIX drive on to Windows 2012 server. or vise versa. Note: Not using NFS/CIFS/samba. (*we are not able to use samba/NFS/CIFS for some reason) Requirement: How to have real time file sharing over the network between Windows and UNIX Do you guys have any ... (4 Replies)
Discussion started by: System Admin 77
4 Replies

4. AIX

AIX cifs mount to Windows Server 2008 R2

Hi i have some problem to mount a Windows Server 2008 R2 share on AIX. I found the artikel 157701-aix-cifs-mount-windows-server-2008-share on the Forum (cant post the Link) witch decribe my situation but there is no solution. I can mount a share to a Windows 2003 SP2 Server but not to 2008 R2... (2 Replies)
Discussion started by: MrTee
2 Replies

5. AIX

AIX cifs: mount Windows Server 2008 share ?

Hello, I've been using AIX cifs to mount windows XP shares with no problems till now. Now it's Windows Server 2008 R2 - no go: mount -v cifs -n host1/user1/pass1 /share1 /mountpt1 There was an error connecting the share or the server. Make sure the lsdev command shows that device nsmb0 is in... (6 Replies)
Discussion started by: vilius
6 Replies

6. AIX

Do I need to configure my local windows to FTP files from local windows to a UNIX AIX server?

Hi Friends, I have this script for ftping files from AIX server to local windows xp. #!/bin/sh HOST='localsystem.net' USER='myid_onlocal' PASSWD='mypwd_onlocal' FILE='file.txt' ##This is a file on server(AIX) ftp -n $HOST <<END_SCRIPT quote USER $USER quote PASS $PASSWD put $FILE... (1 Reply)
Discussion started by: rajsharma
1 Replies

7. AIX

Access AIX NFS Share from Windows Server 2008

Hi all, Hopefully this question hasn't been asked a thousand times. I am trying to connect a Windows Server to an exported NFS share which resides on an AIX box. I think the directory is exported correctly from the AIX side but I can't verify that because I didn't do it myself. On the... (6 Replies)
Discussion started by: ThePistonDoctor
6 Replies

8. AIX

IPsec from one AIX server to many windows clients

I work for a fairly large organization who recently tasked me with securing our telnet services with IPsec. We have a large mixed environment where most of our servers are running unsecured telnet. ssh was my first suggestion but because of the cost of purchasing an enterprise license for a fips... (2 Replies)
Discussion started by: dgaixsysadm
2 Replies

9. AIX

How can invoke applications on Windows machine from AIX server

Hi folks, Before I start explaning my problem let me tell you I am new to Unix environment. I am working on a application. It was developed in java (on Windows machine). But application for production will be deployed on AIX machine. One of my requirement is I need to invoke QTP scripts and... (3 Replies)
Discussion started by: sachinrt
3 Replies

10. Shell Programming and Scripting

SFTP from UNIX (AIX) to Windows 2000 server

Hi all, I have to sftp a file (put) from AIX server to Windows 2000 server. The question is Windows 200 server that i am using doesnt have any SFTP server , if so i know we need to install one. The question here is for writing a sftp script that as to run everyday as part of cron job we... (0 Replies)
Discussion started by: reddymails
0 Replies
Login or Register to Ask a Question
XDestroyWindow(3X11)						     MIT X11R4						      XDestroyWindow(3X11)

Name
       XDestroyWindow, XDestroySubwindows - destroy windows

Syntax
       XDestroyWindow(display, w)
	  Display *display;
	  Window w;

       XDestroySubwindows(display, w)
	  Display *display;
	  Window w;

Arguments
       display	 Specifies the connection to the X server.

       w	 Specifies the window.

Description
       The function destroys the specified window as well as all of its subwindows and causes the X server to generate a event for each window.
       The window should never be referenced again.  If the window specified by the w argument is mapped, it is unmapped automatically.  The
       ordering of the events is such that for any given window being destroyed, is generated on any inferiors of the window before being gener-
       ated on the window itself.  The ordering among siblings and across subhierarchies is not otherwise constrained.	If the window you speci-
       fied is a root window, no windows are destroyed.  Destroying a mapped window will generate events on other windows that were obscured by
       the window being destroyed.

       can generate a error.

       The function destroys all inferior windows of the specified window, in bottom-to-top stacking order.  It causes the X server to generate a
       event for each window.  If any mapped subwindows were actually destroyed, causes the X server to generate events on the specified window.
       This is much more efficient than deleting many windows one at a time because much of the work need be performed only once for all of the
       windows, rather than for each window.  The subwindows should never be referenced again.

       can generate a error.

Diagnostics
       A value for a Window argument does not name a defined Window.

See Also
       XChangeWindowAttributes(3X11), XConfigureWindow(3X11), XCreateWindow(3X11), XMapWindow(3X11), XRaiseWindow(3X11), XUnmapWindow(3X11)
       X Window System: The Complete Reference, Second Edition, Robert W. Scheifler and James Gettys

															      XDestroyWindow(3X11)