Search found 2 matches

by subhashchy
16 Aug 2009 16:57
Forum: DOS Batch Forum
Topic: How to map drive and open folder
Replies: 5
Views: 9096

this might help you

I think this is what you know but missing... cmd.exe /c start /w net use s: \\server\share && explorer S: Start is a command line not a windows command so we have to excute it via command prompt, cmd /c will continue this command and will exit auto. where S: is the maped drive and start /w p...
by subhashchy
16 Aug 2009 16:44
Forum: DOS Batch Forum
Topic: Batch File to do a scheduled ftp upload
Replies: 1
Views: 4124

Try this

you can try it. It works on non-SSL ftp servers. not tested over ssl. @echo off title ***********Ftp transfer program by UR NAME *********** erase c:\ft.txt /f echo echo. cd \ ( echo o "your FTP address" echo "USERNAME" echo "Password" echo cd \home\zv056 echo mput *.* ...