I need a solution
I have 2 run script tasks that uses command script as the script type. Both uses unmanaged tokens. I feed the value from task to another.
The command I use for one of them is just:
SET ListOfUsers="%!Users!%"
IF DEFINED ListOfUsers(
ECHO %ListOfUsers%
)
That task runs on the computer, but it doesn't need to. Is there another way to I put in my info and not have it run on the computer where it is being pushed? That info is being feed to another task that will have to run on the computer it is being pushed to. Thanks.
0