Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[Question] Send to > Ftp server? How to?

Featured Replies

I'm sure it's not as beautiful as if it were hidden, but this simple script does what you want. It uploads a file:

Write the following code into a *.CMD or *.BAT and put it into your SendTo-Folder.

Note: You have to enter your password, server and your username ;)

@echo off
echo.##################
echo.# #
echo.# Uploading File #
echo.# #
echo.##################

set user=YOUR_USERNAME_GOES_HERE
set pass=YOUR_PASS_GOES_HERE
set srvr=YOUR_SERVER_GOES_HERE

echo.open %srvr%>%temp%\sendtoftp.log
echo.%user%>>%temp%\sendtoftp.log
echo.%pass%>>%temp%\sendtoftp.log
echo.BINARY>>%temp%\sendtoftp.log
echo.put %1>>%temp%\sendtoftp.log
echo.bye>>%temp%\sendtoftp.log
ftp -s:%temp%\sendtoftp.log
del %temp%\sendtoftp.log

Hope it helps :P

/PITU

  • Author

Logs arent the only files i want to send, so that script wont help. thanks anyway.

You don't seem to understand the script...

What it does is to echo your settings to a logfile. after that it starts the ftp.exe with the logfile _as source_.

After it's done the script deletes the logfile.

You can upload any file with that script

EDIT: Just give it a try and you'll see: it works fine

Edited by PITU

Do you mean the remote dir? Yes, that's possible:

@echo off
echo.##################
echo.# #
echo.# Uploading File #
echo.# #
echo.##################

set user=YOUR_USERNAME_GOES_HERE
set pass=YOUR_PASS_GOES_HERE
set srvr=YOUR_SERVER_GOES_HERE
set rdir=/YOUR_REMOTE_DIR_GOES_HERE

echo.open %srvr%>%temp%\sendtoftp.log
echo.%user%>>%temp%\sendtoftp.log
echo.%pass%>>%temp%\sendtoftp.log
echo.BINARY>>%temp%\sendtoftp.log
echo.cd %rdir%>>%temp%\sendtoftp.log
echo.put %1>>%temp%\sendtoftp.log
echo.bye>>%temp%\sendtoftp.log
ftp -s:%temp%\sendtoftp.log
del %temp%\sendtoftp.log

Note:

set rdir=/YOUR_REMOTE_DIR_GOES_HERE

starting with "/"

for example:

set rdir=/new folder

if you have a folder called "new folder" in your root directory of the remote machine :P

  • Author

How would i go about adding this to an unattended install? Is there a default send to foldeR?

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.