windows ftp client doesn't cut it. if you want, go download an ftp client for windows that support specifying a port number. Or, you can use a programming language such as
Perl or Python with their ftp module. those modules allow you to specify connection with a different port. eg Python
Code:
#!/usr/bin/env python
import ftplib
server="localhost"
user="anonymous"
password="test@hotmail.com"
try:
ftp = ftplib.FTP()
ftp.connect(server,21) #specify port number when connection
ftp.login(user,password)
except Exception,e:
print e
else:
ftp.cwd("incoming")
ftp.retrlines('LIST')