- Download
- Double click ftpdmin.exe
- launch this batch script
THE BATCH SCRIPT
Code: Select all
@echo off
SET "REMOTE_SERVER=localhost"
(ECHO ----------FTP COMMAND START---------------------
::Automaticaly typed input after launching Windows native FTP client (DELETE THIS COMMENT, CAUSE EITHER WAY - SCRIPT WONT WORK (HAVE NO CLUE WHY))
(echo Administrator
echo Password
echo ls) | ftp %REMOTE_SERVER% )
ECHO ----------FTP COMMAND END---------------------
pause
I want to hide:
Login first with USER and PASS
User (localhost:(none)): Password:
output and just get ls commands output leftover.
Witch is for example:
----------FTP COMMAND START---------------------
acct
cache
config
d
data
dev
etc
flex
mnt
persist
proc
root
sbin
sdcard
sys
system
default.prop
init
init.goldfish.rc
init.qcom.rc
init.qcom.sh
init.rc
init.target.rc
ueventd.goldfish.rc
ueventd.rc
----------FTP COMMAND END---------------------
Instead of
----------FTP COMMAND START---------------------
Login first with USER and PASS
User (localhost:(none)): Password:
acct
cache
config
d
data
dev
etc
flex
mnt
persist
proc
root
sbin
sdcard
sys
system
default.prop
init
init.goldfish.rc
init.qcom.rc
init.qcom.sh
init.rc
init.target.rc
ueventd.goldfish.rc
ueventd.rc
----------FTP COMMAND END---------------------
Any ideas how i could achieve this?