Hello we are planning to use a powershell script for some administrative tasks, which will be accessed by the remote admins. The script will be located on a central file share and will be accessed by all the remote admins via a small exe which simple points to and executes the shared script.(All this is for ability to alter script whenever possible without redistributing to all the admins).
So my questions are how many can access the script in parallel; would it crash if number of users is high? Are there any benchmarking techniques for this kind of process? Is there a better solution to this?
Please do let me know if any additions questions or clarifications required.
I believe each invocation of the script will run in its own runspace, so the only limit would be share connections permitted.
Hope this helps,
Chris