I am trying to use a VBScript in a Job. The script works fine but I don't know how to pass the results of the script to the next step in the job. Any Ideas?
The script generates a random password string for a user account.
Im not aware of a way to do it directly. You can do it by writing the data or parameters to either a table or a file that the next job step will read, or (have not tried this) you could modify the next job step on the fly based on the results of the first step. Often simpler just to do it all in one step.