Hi all,
ZCM 11.2.2, Windows 7 x64 clients.
I needed to copy a file to all existing user profiles, and so I made a script that works when I use it in a .bat file, but I can't get it to work using the Run Scipt action in ZCM. This is part of the script:
When I run it as a Run Script action I get this error:
But if I put the exactly same line in a .bat file and call it from a Launch Executable action it works fine.
This is no big problem, since I can use the .bat file workaround, I'm just curious why it doesn't work. I'm guessing it has something to do with the " and ' symbols...?
Regards,
Pär
ZCM 11.2.2, Windows 7 x64 clients.
I needed to copy a file to all existing user profiles, and so I made a script that works when I use it in a .bat file, but I can't get it to work using the Run Scipt action in ZCM. This is part of the script:
Code:
FOR /F "delims==" %%A IN ('DIR /B "C:\Users"') DO mkdir "C:\Users\%%A\AppData\LocalLow\Apple Computer\QuickTime"
Code:
An error occurred while executing the program. Error is: Unexpected \Users"') DO mkdir "C:\Users\A\AppData\LocalLow\Apple.
This is no big problem, since I can use the .bat file workaround, I'm just curious why it doesn't work. I'm guessing it has something to do with the " and ' symbols...?
Regards,
Pär