I've created a solution through asp and sql that enables a login for a ftp-server. As soon as the login in created I would like to trigger a reload of the ftp server (using BPFTP) which is necessary to load the user into BPFTP. I've tried this:Exec master..xp_cmdshell '"c:\Program Files\BPFTP Server\BPFTPServer.exe" -reload'
This does not work.I've also tried:- Exec master..xp_cmdshell 'c:\Progra~1\BPFTPS~1\BPFTPServer.exe" -reload'
- Using a batch file f.i. Exec master..xp_cmdshell 'c:\Progra~1\BPFTPS~1\reload.bat'
- tried using start and call command- tried to put the actions above in a sql jobNo results so far...Needless to say that the command does work from start / run of when I double-click the batch file I created. If anyone has a clue I'd really appreciate it if you would share it!