Limiting access of an FM user.
- Set a variable and get the account name
Set Variable [$$username; Value: Get (AccountName)]
- From the script where you want the set user limitation:
Perform Script ["getUserAccount"] //the script created in step 1
If [$$username = "some_user_name"]
Perform Script ["noAccessScript"]
Exit Script[]
else
…proceed normally
Comments