PDA Internal ftp files copy

64 views Asked by At

Im trying to make a windows script for making a retrieval from a PDA (INTERMEC CN70). The fun part of this pda is that what i try to do is implemented in activesync, but not more supported at my place of work.

So as the files generated by the pda is saved in an internal FTP of the pda and is connected in an Ethernet dock, I made an easy script to connect to the internal FTP, the issue is that i'm not an script rock star and once inside i don't know how to copy the files with the script, i seerched options like robocopy or xcopy but i don't know how to make this commands work for not overwriting the files.

I post my script here

@ECHO OFF
SET /p ippda=PDA ACTUAL IP?:
IF "%ippda%"=="" GOTO Faliure
explorer ftp://intermec:cr52401@%ippda%/
Goto End
:Faliure
ECHO IP faliure
PAUSE
:END

Thanks for your time^^

0

There are 0 answers