OK, I got your PMs...

Thought I should post here cuz then others that read this thread could benefit from a complete answer.

Adding /Y should silence the prompt.
Code:

Break On
Shell 'xcacls "C:\New Folder" /Y /C /T /G Everyone:f'
@error ?
@Serror ?
Shell 'xcacls "C:\New Folder (2)" /Y /C /T /G Everyone:f'
@error ?
@Serror ?
Shell 'xcacls "C:\New Folder (3)" /Y /C /T /G Everyone:f'
@error ?
@Serror ?



Make sure you don't put it the /Y after the /G?
/G Everyone:f is one parm... has to be kept together.

You might want to include %comspec% so that you can send the result to the bit bucket.
Shell '%comspec% /c xcacls "C:\New Folder" /Y /C /T /G Everyone:f 1>nul 2>&1'


_________________________
Give a man a fish and he will be back for more. Slap him with a fish and he will go away forever.