I created a script to add a user to a workstation and add that user to a Group.
However the password for the user in question has the character '>' in it.
SET PWD=solid>99
net user Admin %PWD% /Add
The value the script actually passes is 'solid 1>99'
How can I correct this?
Thanks