fix a bug from me in COPYCMD check code it was two /V 
it should only have been one /N = short file name (dos 8.3 file mname not /S)
Modified: trunk/reactos/subsys/system/cmd/copy.c

Modified: trunk/reactos/subsys/system/cmd/copy.c
--- trunk/reactos/subsys/system/cmd/copy.c	2005-07-15 14:12:48 UTC (rev 16575)
+++ trunk/reactos/subsys/system/cmd/copy.c	2005-07-15 14:18:45 UTC (rev 16576)
@@ -315,7 +315,7 @@
         evar[t+1]=_T(' ');
       }
 
-			else if (_tcsncicmp(_T("/V"),&evar[t],2)==0) 
+			else if (_tcsncicmp(_T("/N"),&evar[t],2)==0) 
       {
         dwFlags |= COPY_SHORTNAME;
         evar[t]=_T(' ');