The reason of this script is that I want to see if a user is local administrator or not on a pc. We want to mail out this exe file (I have made a exe file of it with iTripoli AdminScriptEditor) to the users and ask them to execute this.
Here is the code:

Code:
 Shell '%Comspec% /c Net User _Qwertyu ?9955MMxyythk /Add'

If @ERROR = 0
$Sel = MessageBox("You HAVE administrators rights in this computer.@CRLF@CRLFUsername = %Username%@CrlfComputername = %Computername%@CrlfDomain=@Domain", "Company AB", 64)
Shell '%Comspec% /c Net User _Qwertyu /Delete'
Else
$Sel = MessageBox("You DO NOT HAVE administrators rights in this computer.@CRLF@CRLFUsername = %Username%@CrlfComputername = %Computername%@CrlfDomain=@Domain", "Company", 16)
EndIf