I have compiled a script that Launches iexplore.exe with a url parameter that has some variables in it. This script is on a central server and accessed by hundreds of users, possibly simutaneously. Is there any issues I need to be aware of as far as the script being multi user.
thanks,
Eric
//PDF Request
//Author :
//Version :1.0
//Date Created :03/25/2003
//Date Last Modified :03/31/2003
GetClipBoard>LN_NUM
Run Program>C:\Program Files\Internet Explorer\IEXPLORE.EXE "http://antares/creditreport/CreditRepor ... er=%LN_NUM%"
Help with Multi User Script
Moderators: JRL, Dorian (MJT support)
Yes, the contents of the clipboard could be changed between the times that the script is launched and the "GetClipBoard" function is executed.
You may want to consider some kind of parameter instead... so they can pass for example: /loannum=92837 to the compiled script instead. That way the instances shouldn't collide with each other.
In this way, your script can read the value of %loannum% instead of attempting to access the clipboard (which may no longer contain the loan number you wanted)
You may want to consider some kind of parameter instead... so they can pass for example: /loannum=92837 to the compiled script instead. That way the instances shouldn't collide with each other.
In this way, your script can read the value of %loannum% instead of attempting to access the clipboard (which may no longer contain the loan number you wanted)
Hi Eric,
There will be no problems associated with running your compiled script by more than one user. The EXE is run locally on the user's machine - just as any other EXE would be run.
Obviously the clipboard is the user's local clipboard so I don't quite follow why Captive thinks this should be changed.
There will be no problems associated with running your compiled script by more than one user. The EXE is run locally on the user's machine - just as any other EXE would be run.
Obviously the clipboard is the user's local clipboard so I don't quite follow why Captive thinks this should be changed.
MJT Net Support
[email protected]
[email protected]
Thanks Captive and support...
I do tend to agree that the clipboard will not be affected. However I am using this in a Metaframe environment as well so.... I need to investigate whether the Metaframe server will have separate clipboards for all the users logged into it. In my initial tests the clipboards do not collide.
Eric
I do tend to agree that the clipboard will not be affected. However I am using this in a Metaframe environment as well so.... I need to investigate whether the Metaframe server will have separate clipboards for all the users logged into it. In my initial tests the clipboards do not collide.
Eric