Jump to content

NewTester

Members
  • Posts

    9
  • Joined

  • Last visited

Everything posted by NewTester

  1. Hi All, Using Autoit Window Info tool, i am not able to capture any option from right click menu. As seen in the attached snapshot ,i want to click on Download Button that is displayed on right click of any file name that has to be downloaded. Please let me know how this can be achieved?? Thanks in advance
  2. Can anybody pls reply to this mail...............its very urgent
  3. ok here is wat am tryin to do $server = 'ftp.xxxxxx.com' $username = 'xxxxxx' $pass = 'xxxxxxxx' $s_FileName="ftp://ftp.xxxxxx.com/Download" $s_LocalFile="C:\" $Open = _FTP_Open('MyFTP Control') $Conn = _FTP_Connect($Open, $server, $username, $pass) Static $b=_FTP_DirPutContents($Conn, $s_LocalFolder, $s_RemoteFolder, 1 ); this is working fine(upload) Static $GetFile=_FTP_FileGet($Conn, $s_FileName, $s_LocalFile) please let me know wat is the problem as this is very urgent
  4. Hi All, I am not able to download file from FTP using _FTP_FileGet() function. Every time i get the return value as 0. First i thought it is related to permission stuff but i am able to Upload filed to FTP easily. This is wat i am trying to do $GetFile=_FTP_FileGet($Conn, $s_RemoteFile, $s_LocalFile) Can anyone please tell me y this is hapening as this is very urgent Thanks in Advance
  5. Hi All I Am not able to download files from FTP using _FTP_Fileget() function, everytime i get return value as 0 i am able to upload files to FTP using _FTP_DirPutContents() function please advice me how to proceed this is very very urgent please anybody reply
  6. hey guys, uploading to ftp using Putftp() seems to be working fine...........but please let me know how to download files from FTP because _FTP_FileGet is not working for me,every time i get return value as 0 please help me as this is very very urgent requirement
  7. 1)the reason that i want to downlaod an application from FTP is that usually the application that comes for testing will be posted on to FTP by our clients.so often we have to download and then install 2)Its an EXE and packaged with Installsheild, and yes i want to build script to interact with the installation(like clicking on next button say for example) Also am still finding problem in downloading file from FTP please let me know if this is correct way of doing Static $s_LocalFile="C:\" Static $s_RemoteFile="ftp://ftp.xxxxxx.com/xxxx.zip" $GetFile=_FTP_FileGet($Conn, $s_RemoteFile, $s_LocalFile) But am able to connect to FTP and upload documents Please advice
  8. I have just started coding so........... For FTP Related stuff i have been using #include <FTPEx.au3> Static $s_RemoteFolderdownload= 'ftp://ftp.xxxxx.com/Download.txt' Static $s_LocalFolderdownload='C:\Test\' $server = 'xxxxx $username = 'xxxxx' $pass = 'xxxxx' $Open = _FTP_Open('MyFTP Control') $Conn = _FTP_Connect($Open, $server, $username, $pass) Static $b=_FTP_DirPutContents($Conn, $s_LocalFolder, $s_RemoteFolder, 1 ) MsgBox(0,"Current Directory",$ Static $c=_FTP_FileGet($Conn, $s_RemoteFolderdownload, $s_LocalFolderdownload) But the file is not getting downloaded And i do not know whether we can install a software on a Remote machine please advice
  9. Hi All, i am very new to AutoIt Tool...........please help me The requirement is 1.First download the EXE from FTP 2.Once the EXE is downloaded,automate installing the same on the local machine as well as any VM(Virtual machine or remote machine)if specified. when i tried the FTP part, i was able to Successfully connect and upload a file to FTP, but failed to download. i was trying to use _FTP_FileGet() function but i am still finding issues with the same. what shud i do?? Also please let me know whether software installation is possible with AUtoit, and if it is possible then can we install on Vm or any remote machine..................does Autoit support this??? Please help in giving inputs regarding the same. Thanks in Advance
×
×
  • Create New...