0

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.

1 Answer 1

1

Check if the user under which IIS process runs (W3P.exe) has the same rights as when you run it manually.

Sign up to request clarification or add additional context in comments.

1 Comment

yeah..its the same admin user

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.