Windows
Automatyczne uzupelnianie nazwy w wierszu polecen Windows.:
- Uruchom Edytor rejestru.
- Przejdź do klucza [HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Command Procesor].
- Znajdującą się w tym kluczu wartość DWORD ”CompletionChar” ustaw na 9.
- Ponownie uruchom komputer.
How to put file to ftp site using bat file in windows
Windows command:
ftp (-v) -s:file.txt host >> ftp.log
switches means:
-v optional means without messages
-s file witch contains username, password , etc…
host – ftp site FQDN or IPAddress
ftp.log – log file
file.txt – file with ftp commands
structure of “file.txt”:
username
password
binary
lcd C:\temp
put temp.txt
bye
0 Comments