Hi,
I have created one batch file to run SVN update through ASP.Net web application. It is working fine at my computer and it updated all folders. But when I deploy it and run the same batch at server side through page, it is not been updated.
Point to note is, I am able to execute the same batch at server side manually.
Here is my batch files content..
/----------------------------
@echo off
set SOURCE=my source path to update
set SVN=C:\Program Files\TortoiseSVN\bin\
"%SVN%\svn.exe" cleanup %SOURCE%
"%SVN%\TortoiseProc.exe" /command:update /path:"%SOURCE%" /closeonend:1
set SOURCE=
set SVN=
/----------------------------
Please help out.