this code doesnt work:

 Code:
Break on

Shell 'xcacls "c:\program files\infostrait" /E /G "DOMAIN\Werknemers":F;F'


But if i remove the single quotes and Shell (just dos command's):
 Code:
xcacls "c:\program files\infostrait" /E /G "DOMAIN\Werknemers":F;F


Then it runs without any problem.


ahh found it! This code works for me.

 Code:
Break on

Shell 'cmd.exe /c xcacls "c:\program files\infostrait" /E /G "DOMAIN\Werknemers":F;F'


Edited by roedie (2007-05-14 09:08 AM)