DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=33261>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=33261





------- Additional Comments From [EMAIL PROTECTED]  2005-08-02 16:09 -------
The example that ships with NSIS does this:

Name "UserInfo.dll test"
OutFile UserInfo.exe

Section
        ClearErrors
        UserInfo::GetName
        IfErrors Win9x
        Pop $0
        UserInfo::GetAccountType
        Pop $1
        StrCmp $1 "Admin" 0 +3
                MessageBox MB_OK 'User "$0" is in the Administrators group'
                Goto done
        StrCmp $1 "Power" 0 +3
                MessageBox MB_OK 'User "$0" is in the Power Users group'
                Goto done
        StrCmp $1 "User" 0 +3
                MessageBox MB_OK 'User "$0" is just a regular user'
                Goto done
        StrCmp $1 "Guest" 0 +3
                MessageBox MB_OK 'User "$0" is a guest'
                Goto done
        MessageBox MB_OK "Unknown error"
        Goto done

        Win9x:
                # This one means you don't need to care about admin or
                # not admin because Windows 9x doesn't either
                MessageBox MB_OK "Error! This DLL can't run under Windows 9x!"

        done:
SectionEnd

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to