I have tried several things so far but haven't had much luck yet, what I'm attempting to do is to have a command line or powershell script that I can run once a day to make sure my numerous checked out projects are up to date. I know I would be looping through the directory folders inside my workspace, but when setting the variables I haven't had any luck as it will error out. I am using tortise-SVN, and Vista. Here is what I have so far
echo == Initiating system instance variables...
echo. -- Setting the variables...
:: Here you need to make some changes to suit your system.
set SOURCE=C:\workspace\Project
set SVN=C:\Program Files\TortoiseSVN\bin
:: Unless you want to modify the script, this is enough.
echo. %SOURCE%
echo. %SVN%
echo. ++ Done setting variables.
echo.
echo == Updating source from SVN
echo. -- Running update...
"%SVN%\TortoiseProc.exe" /command:update /path:"%SOURCE%" /closeonend:2
echo. ++ Done.
echo. -- Cleaning up...
set SOURCE=
set SVN=
echo. ++ Done.
@echo off