Post a reply

Before posting, please read how to report bug or request support effectively.

Bug reports without an attached log file are usually useless.

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

martin

Re: Script gives problem when called through a .vbs file

I believe that the message is not from WinSCP. It is rather system message informing that it cannot find winscp.com.
guest

Script gives problem when called through a .vbs file

Hi!

I have writen a script to upload some files. I call that script from my C# code. But, it gives me an error "the system cannot find the file specified". Strange thing is when I call that script from my command line then there is no problem.


Flow is like this (I have a VBScript file(.vbs) (generated by C# code), which creates the script on the fly and calls it.)

This is how I call the script through my .vbs file.

Set objShell = WScript.CreateObject( "WScript.Shell" )
objShell.Run ("WinSCP.com /script=" & strFTPScriptFileName)

But, it prompts me an error "the system cannot find the file specified". But, the same generated script, when I call from command line by giving the command WinSCP.com /script= txtSomething.txt, it works. Also, if I run the .vbs file from the command line, then also it works. Pls Help!