Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
On Thu, 10 Apr 2003 19:16:23 +0200, "Bo Berglund" <Bo.Berglund at system3r.se> wrote: >So you mean that a loginfo line like the one below will now work fine? > >ALL C:\Program Files\CVSMailer\CVSMailer.exe -l$CVSPID $USER $CVSROOT = >%{sVv} > >It did not when I last tested so therefore I use this: > >ALL D:\server\CVSMailer\CVSMailer.exe -l$CVSPID $USER $CVSROOT %{sVv} > Just use Progra~1 for that... one of the minor(?) bugs in the NT command processing is that you can't actually pass parameters to commands that you use spaces... if you're not actually passing parameters then it'll work fine. cmd /c ""c:\program files\windows nt\dialer.exe"" -- works cmd /c ""c:\program files\windows nt\dialer.exe"" "test parameter" -- doesn't work Maybe it's fixed in XP... if you have access to an XP build try the above commands and see if they work. The side effect is that cvsnt handles spaces just fine, but only if you don't want to send any extra parameters with quotes in them... DEFAULT ""c:\program files\windows NT\dialer.exe"" $CVSPID $USER ... works, but DEFAULT ""c:\program files\windows NT\dialer.exe"" %{sVv} Tony