Hey folks,
I have a question for you. I have 4 computers that use a particular program that requires a login. But i only have 2 accounts. I have a command that works via batch file that launches the program and logs in but i dont know how to specify what account will be used. I will explain in pseudo code.
lets say the accounts are:
account1
account2
and the passwords are the same.
This would be on the computer
count = 1;
while(computer has not found false line)
{
[INDENT]if (first Line of serverFile == false)
{
then set the first line to 'true' and set the account to "account+count"
}
else
{
increment count
}[/INDENT]
}
then on a server there would be a txt or ini file...whatever works with a list
REM This file holds true false statements if accounts are in use if they are true they are in use.
false //this line represents account one
false //this line represents account two
So is this possible? If so can anyone guide me towards a website that could help me out with this?
Thanks PO!