Some built-in groups are used for management purposes. You control which
> users belong to these groups, and they exist to allow you to easily
> control what privileges the users on your computer are assigned (e.g. the
> users and administrators groups).
>
>
> > 1.) SYSTEM
>
> This account is used by system programs and has the full privileges of the
> computer.
>
> > 2.) NETWORK SERVICE
>
> This account is used by system programs that run on your computer that
> need access to the network.
>
> > 3.) Authenticated Users
>
> This group is used to identify users that have logged in with a username
> and password.
>
> > 4.) LOCAL SERVICE
>
> This account is used by system programs that run on your computer but do
> not need access to the network.
>
> > 5.) Users
>
> This group is used to identify the users of the computer. As an
> administrator, you control who is in this group.
>
>> Is it possible to login as them?

常见用户分类及权限 SYSTEM :本地机器上拥有最高权限的用户,使用普通的用户管理工具通常是查看不到他们的,可理解为WINDWOS本身帐户,一些大型系统软件也拥有此帐号权限,比 如MSSQL,安全软件也使用此帐号权限,比如360。 Administrator:系统管理员,基本上是本地机器上拥有最高权限的用户;你可以对它重命名,但是不能删除。 Administrators:管理员组,该组成员拥有对计算机/域有不受限制的完全访问权;这个用户组在本地机器上拥有最高权限(SID:S- 1-5-32-544) Backup Operators:备份操作员,可以备份或还原系统文件,可以远程登录管 理,虽然不如administrators大,但也差不多; Guests:Guests跟用户组users的成员有同等访问权,但Guests帐户的安全限制更多,默认是禁用的; Network Configuration Operators:此组中的成员拥有足够的管理权限来管理网络功能的配置; Power User 拥有大部分管理权限,但也有限制。可以运行经过验证的应用程序,也可以运行旧版应用程序,低于ADMINISTRAOTRS,但远高于USERs,不能添加管理员; Remote Desktop Users:此组中的成员被授予远程登录的 权限; Replicator:支持域中的文件复制Users:用户无法进行有意或无意的改动。因此,用户可以运行经过证明的文件,但不能运行大多数旧版应用程 序; HelpServicesGroup:帮助和支持中心组,该组的成员可以实现远程帮助。 Debugger Users:拥有调式服务器的权限,一般是安装IIS后配置的,用于调式web站点服务器。需要本地安全站点授信。 Users:本地机器上所有的用户帐户:这是一个低权限的用户组

windows accounts的更多相关文章

  1. Windows API Hooking in Python

    catalogue . 相关基础知识 . Deviare API Hook Overview . 使用ctypes调用Windows API . pydbg . winappdbg . dll inj ...

  2. 在winsshd 中添加id_rsa.pub 实现Windows 服务器主机自动信任Linux 客户端

    文章一. 生成密钥: 在Linux主机(ssh客户端),通过ssh-keygen在建立SSH keys# ssh-keygen -t rsa (连续三次回车,即在本地生成了公钥和私钥,不设置密码)将在 ...

  3. Enabling Active Directory Authentication for VMWare Server running on Linux《转载》

    Enabling Active Directory Authentication for VMWare Server running on Linux Version 0.2 - Adam Breid ...

  4. Windows Server 2012 虚拟化实战:存储(二)

    五.搭建Window Server 2012虚拟化的存储网络 前文我们讨论了Window Server 2012支持的各种与存储相关的技术,接下来我们通过实践对其中的一些技术进行检验.实际上Windo ...

  5. What's new in Windows 10 Enterprise with Microsoft Edge.(Windows 10 新功能)

    What's new in Windows 10 Enterprise with Microsoft Edge --带有Edge浏览器的Windows 10 企业版的新功能 本文摘录自公司群发邮件, ...

  6. windows内网渗透技巧

    1.(windows)无扫描器情况下内网存活主机探测: for /l %i in (1,1,255) do @ping 192.168.1.%i -w 1 -n 1 | find /i "t ...

  7. 简化 Web 应用程序与 Windows Azure Active Directory、ASP.NET 和 Visual Studio 的集成

    大家好! 今天的博文深入讨论我们今天推出的开发人员工具和框架中的一些新功能.我们通过与 ASP.NET 和 Visual Studio 团队合作开发了一些重大的增强功能,让开发人员能够轻松使用 Win ...

  8. Windows 10家庭版共享打印机

    原文地址:http://blog.csdn.net/Purpleendurer/article/details/50498788P.s. 原文太罗嗦,简化了一下~ 启用Guest账户 按Win+X,从 ...

  9. 【Windows】为节省系统资源,停掉不必要的服务

    1.windows服务名称(注册表名称)和显示名称对照表如下: < 显示名称 状态 服务名称 Application Management demand AppMgmt ASP.NET Stat ...

随机推荐

  1. jquery ajax 提交form表单 以及django后台接受

    HTML <form id="project_file_upload" enctype="multipart/form-data" > <di ...

  2. poj3693(后缀数组)

    http://poj.org/problem?id=3693 题意:给出一串字符,需要求这串字符中的最长重复子串,要是有多个,输出字典序最小的......... 我自己的一些想法:这个思路我一开始倒是 ...

  3. netifd

    Netifd是OpenWrt中用于进行网络配置的守护进程,基本上所有网络接口设置以及内核的netlink事件都可以由netifd来处理完成. 在启动netifd之前用户需要将所需的配置写入uci配置文 ...

  4. oracle查询数据库最大连接数等信息

    .当前的数据库连接数 select count(*) from v$process where program='ORACLE.EXE(SHAD)'; .数据库允许的最大连接数 select valu ...

  5. gin入门

    Download and install it: $ go get github.com/gin-gonic/gin Import it in your code: import "gith ...

  6. SQL里3个表的连接查询

    两种:1.select * from 表1,表2,表3 where 表1.字段=表2.字段 and 表1.字段=表3.字段这种效率比较低 结构简单数据量小可以采用2.select * from 表1 ...

  7. c/c++学习之c++ 中的list <>容器

    http://blog.csdn.net/mazidao2008/article/details/4802617 push 实例化 即添加 http://www.cnblogs.com/BeyondA ...

  8. 多个return和一个return

    //一个returnnamespace CleanCSharp.Methods.Dirty { class MethodExitPoints { public string GenerateAgeAp ...

  9. 去死吧!USB转串口!!!

    首先,这个题目有两种歧义:1.USB转232串口(严格说就是这种)! 2.USB转USART串口(通常都是这么叫,认为就是这,理论上是错误的,歧义所在)! USB转TTL.USB转232.USB转串口 ...

  10. ajax 请求登录超时跳转登录页的示例代码

    Ajax AJAX即“Asynchronous Javascript + XML”(异步JavaScript和XML),是指一种创建交互式网页应用的网页开发技术. 在Filter里判断是否登录,如果未 ...