Copy files from windows outlook in to UNIX box.


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Copy files from windows outlook in to UNIX box.
# 1  
Old 07-22-2013
Copy files from windows outlook in to UNIX box.

HI All,

I am using a windows RDP machine . from the RDP i am opening a putty session of a unix server.i have outlook installed in the windows RDP machine, and if i get a file inthe outlook mail how can i copy it to a location in the putty unix machine. Please help me!!!!
# 2  
Old 07-23-2013
What OS/version is on your unix machine (output of uname -a in putty session)

Do you have samba installed (output of type smbclient in putty session).

Is ftp running/configured on the unix machine? (ftp unix_server_name from windows cmd prompt asks for user name rather than some sort of timeout in connection error)
# 3  
Old 07-23-2013
HI Chubler XL,

Thanks for the reply. the OS/Version is HP unix. and SMB client is not installed in putty session. how to check wheather the ftp is installed or not? please help.
# 4  
Old 07-23-2013
From the windows dos prompt try something like this:

Code:
C:\Users\Chubler>ftp my-server.com 
Connected to my-server.com (xxx.xxx.xxx.xxx). 
220---------- Welcome to Pure-FTPd [TLS] ---------- 
220-You are user number 1 of 50 allowed. 
220-Local time is now 23:59. Server port: 21. 
220 You will be disconnected after 15 minutes of inactivity. 
Name (my-server.com:user): chubler 
331 User chubler OK. Password required 
Password: 
230-User chubler has group access to:  users
230 OK. Current restricted directory is /home/chubler
Remote system type is UNIX. 
Using binary mode to transfer files. 
ftp> put somefile.tar.gz  
150 Ok to send data.
226 Transfer complete.
3557519 bytes sent in 0.1 seconds (35571632 bytes/s)
ftp> quit
C:\Users\Chubler>exit

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

UNIX command to copy files from Windows to UNIX box

Hi Folks, I have a file name abc.xml in my windows machine at the location c:\ytr\abc.xml which I want to place at the unix box machine inside cde directory.. at the following location that is /opt/app/cde/ now the credentials of unix box are abc345 -->(dummyid) ftyiu88--->(dummy passwd) ... (4 Replies)
Discussion started by: punpun66
4 Replies

2. UNIX for Dummies Questions & Answers

Get files from Windows to Unix Box

Hi All, I am a new to unix scripting ...looking for directions from the Gurus. I want to create a FTP script to get Files from windows box to unix box. Thank you for your replies. (1 Reply)
Discussion started by: pbhk
1 Replies

3. Shell Programming and Scripting

Transfering files from windows to unix box through sftp

Hello All, we have scenarion where we need to pull the Files from Windows to Unix Box through SFTP protocol. as per our analysis we did install the cygwin package on the Windows Box to have the openSSH package functionality. 1.Will openSSH help us to achieve the functionality what we are... (3 Replies)
Discussion started by: Amey Joshi
3 Replies

4. Shell Programming and Scripting

ftp file starting with particular name on Windows box to Unix box using shell script

Hello all ! I'm trying to write a shell script (bash) to ftp a file starting with particular name like "Latest_" that is present on a Windows box to UNIX server. Basically I want to set this script in the cron so that daily the new build that is posted on the Windows box can be downloaded to the... (2 Replies)
Discussion started by: vijayb4u83
2 Replies

5. UNIX for Dummies Questions & Answers

Copy file from Remote Unix box to windows machine

Hi I need to copy a file from the remote unix server to windows machine. I read lot of thrad but didn't worked out. Requesting all to please help. (2 Replies)
Discussion started by: sameerspice
2 Replies

6. Shell Programming and Scripting

FTP some text files from Windows box to unix

hi all, can anybody help me with script or command to ftp some text file from windows machine to AIX machine. this is shud be done by executing a shell script. (1 Reply)
Discussion started by: suprithhr
1 Replies

7. UNIX for Dummies Questions & Answers

I need an scp command from a unix box to a windows box.

scp file="myfile.txt" todir="user@somehost:(M:drive:/somepath/)"/ Not sure I need it to go to a specific drive on the windows box (1 Reply)
Discussion started by: xgringo
1 Replies

8. Shell Programming and Scripting

Moving files from Unix box to a windows box

Hi All, I need a little help .I want to transfer a file from unix box to a windows box,but the problem i'm facing is that in windows box FTP is not enabled and currently it is nearly impssible to change setting on windows box,i can not use the ftp method ,in my shell script to transfer the file.... (2 Replies)
Discussion started by: Preet
2 Replies

9. UNIX for Dummies Questions & Answers

Running UNIX commands remotely in Windows box from Unix box – avoid entering password

I am able to run the UNIX commands in a Windows box from a UNIX box through "SSH" functionality. But whenever the SSH connection is established between UNIX and Windows, password for windows box is being asked. Is there a way to avoid asking password whenever the SSH connection is made? Can I... (1 Reply)
Discussion started by: D.kalpana
1 Replies

10. UNIX for Advanced & Expert Users

VPN client (windows Box),and Server (Unix Box)

If I want to access unix box via VPN tunnel,from windows box. What sould I configure on the windows client PC, and what should I enable on the Unix Server box ? I am using Solaris V10 intel platform, and I am using windows XP, and 2003 for client (0 Replies)
Discussion started by: zillah
0 Replies
Login or Register to Ask a Question