I want to run the following cacls command in vbscript:
cacls "C:\Program Files\My Program" /T /E /G "Authenticated Users":C
The objShell.Run command already uses quotes so how can I implement my command so that the two don't conflict? How can I put quotes withing quotes? Thanks.
cacls "C:\Program Files\My Program" /T /E /G "Authenticated Users":C
The objShell.Run command already uses quotes so how can I implement my command so that the two don't conflict? How can I put quotes withing quotes? Thanks.