Let say I have text file contains the following strings.
user1
user2
user3
user4
How do I pass all those data to another template file contains the following ..
UserCreate 'string here' /GROUP:none /REALNAME:none /NOTE:none
UserNTLMSet 'string here' /ALIAS:none
So at the end it will produce output like this
UserCreate user1 /GROUP:none /REALNAME:none /NOTE:none
UserNTLMSet user1 /ALIAS:none
UserCreate user2 /GROUP:none /REALNAME:none /NOTE:none
UserNTLMSet user2 /ALIAS:none
.....................
Thank you in advance!!