Jump to content

Recommended Posts

Posted

Tried with

Global $user = 'user1' And 'user2' And 'user3' And 'user4'

Also

Global $user = 'user1' Or'user2' Or'user3' Or 'user4'


    Global $userid = GUICtrlRead($USERIDINPUT)
    If    Not $user ==  $userid Then

        MsgBox(0, "Temp", "You can run the script")

    Else
        MsgBox(0, "Temp", "You cannot run the script")
        Exit
    EndIf

Posted

Also tried

 

Global $user = 'user1' Or'user2' Or'user3' Or 'user4'


    Global $userid = GUICtrlRead($USERIDINPUT)
    If    $user =  $userid Then

OR

$userid = $user Then

        MsgBox(0, "Temp", "You can run the script")

    Else
        MsgBox(0, "Temp", "You cannot run the script")
        Exit
    EndIf

  • Moderators
Posted

Moved to the correct forum, as the DEV forum very clearly states:

  Quote

Do not create AutoIt-related topics here, use AutoIt General Help and Support...

Expand  

 

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

  • Developers
Posted
  On 4/30/2018 at 4:45 PM, Cyborg5000 said:

Global $user = 'user1' And 'user2' And 'user3' And 'user4'

Also

Global $user = 'user1' Or'user2' Or'user3' Or 'user4'

Expand  

I am wondering why you think this should work at all?
You are creating an boolean result to which $User will be set.

One way is to do it like this:

Global $user = '|user1|user2|user3|user4|'
If StringInStr($user, "|" & $userid & "|") Then
    ;
EndIf

also for the records: these kind of tests will always fail:

  On 4/30/2018 at 4:45 PM, Cyborg5000 said:

If  Not $user ==  $userid Then

Expand  

as Not $user will be evaluated as first step!

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted

You could have a look at Xprotec in the example scripts section to limit access to your script.
But be aware that you can not get 100% protection - search the forum for explanations why ;)

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted (edited)

If you are having them log into the computer @UserName is great as it authenticates against who they are logged in as, nobody can simply just type somebody elses name into a field.  You can then check against a AD security group with other AD integration UDF that we have.

At the most basic level, I would put my names in an .ini file or in the script as an array and check it in a loop with stringinstr() or stringregexp() depending how secure you want it and how easy to modify it needs to be.

Edited by ViciousXUSMC

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...