I have a script that is copying loads of icons to the startmenu, but have run into a slight problem. The following is the offending snippet:

Code:

If InGroup("$_defdomain$grupp")
MD "$FPMENU\$flis\"
Copy "$FPIcons\$flis\" "$FPMENU\$flis\" /c /r /s
EndIf



Problem is that if there's a directory that contains, let's say for example two directories and 6 files, and the user do not have permission on the directories, but to the files (icons), it creates the first folder as a empty one and doesn't continue to copy the rest of the files (icons). Is that not what /c is supposed to do?

TIA.