C#-获取当前用户为哪种用户

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace ISCurrentUser
{
    public partial class Frm_Main : Form
    {
        public Frm_Main()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            AppDomain domain = System.Threading.Thread.GetDomain();//获取当前域
            domain.SetPrincipalPolicy(System.Security.Principal.PrincipalPolicy.WindowsPrincipal);//将操作系统组映射到角色
            //获取当前系统组
            System.Security.Principal.WindowsPrincipal principal = (System.Security.Principal.WindowsPrincipal)System.Threading.Thread.CurrentPrincipal;
            if (principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.User))//判断是否为普通用户
            {
                label1.Text += "当前用户为普通用户\n";
            }
            if (principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.PowerUser))//判断是否为超级用户
            {
                label1.Text += "当前用户为超级用户\n";
            }
            if (principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.Administrator))//判断是否为系统管理员
            {
                label1.Text += "当前用户为系统管理员\n";
            }
            if (principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.SystemOperator))//判断是否为系统操作员
            {
                label1.Text += "当前用户为系统操作员\n";
            }
            if (principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.BackupOperator))//判断是否为备份操作员
            {
                label1.Text += "当前用户为备份操作员\n";
            }
            if (principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.PowerUser))//判断是否为打印操作员
            {
                label1.Text += "当前用户为打印操作员\n";
            }
            if (principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.Replicator))//判断是否为复制操作员
            {
                label1.Text += "当前用户为复制操作员\n";
            }
            if (principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.Administrator))//判断是否为账户操作员
            {
                label1.Text += "当前用户为账户操作员\n";
            }
            if (principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.Guest))//判断是否为来宾账户
            {
                label1.Text += "当前用户为来宾账户\n";
            }
        }
    }
}
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值