`
deadcow
  • 浏览: 49847 次
  • 性别: Icon_minigender_1
  • 来自: JM&ZH&HK
社区版块
存档分类
最新评论

M$ AD User view

    博客分类:
  • LDAP
阅读更多

AD Users View



All Users
It provides the details of all the users in the selected scope.

How it works: This view is generated by querying the Directory Service with the filter
“(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370))”

Users without Managers
It provides the list of users who do not have any managers assigned to them.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(!manager=*))"

Manager Based Users
It provides the list of users that directly report to the selected user (Manager). The users listed in report are those who have the manager property set to this selected user.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(manager=managerDN))"

Users in more than One Group
It provides the details of users who belong to more than one group.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(memberOf=*))"

Recently Created Users
It provides the details of the user accounts created recently.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(createTimeStamp>=givenTime))"

Recently Modified Users
It generates the lists of user accounts modified recently.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(modifyTimeStamp>=givenTime))"

Dial-in Allow Access
It generates the list of users who have access to dial-in.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(msNPAllowDialin=TRUE))"

Dial-in Deny Access
It generates the list of users who don’t have access to dial-in.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(|(msNPAllowDialin=FALSE)(!msNPAllowDialin=*)))"

Users with Logon Script
It generates the list of users who have logon scripts. Logon scripts are those which run automatically when the user logon.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(scriptPath=*))"

Users without Logon Script
It generates the list of users who don’t have logon scripts. Logon scripts are those which run automatically when the user logon.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(!scriptPath=*))"

All Deleted Users
It generates the list of all deleted users in the domain.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectClass=user)(!objectClass=computer)(isDeleted=TRUE))"

Recently Deleted Users
It generates the list of all user account deleted recently in the domain.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectClass=user)(!objectClass=computer)(isDeleted=TRUE)(whenChanged>=givenTime))"

Account Status

Disabled Users
It generates the list of all disabled user accounts.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(userAccountControl:1.2.840.113556.1.4.803:=2))"

Locked Out Users
It generates the list of all user accounts that have been locked out.

How it works: This view is generated by querying the Directory Service with the filter "(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(lockouttime>=1))"

Account Expired Users
It generates the list of all user accounts that have expired.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(!accountExpires=0)
(!accountExpires=9223372036854775807)(accountExpires<=currentTime) )"

Recently Account Expired Users
It generates the list of all user accounts that have expired in the given number of days.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(!accountExpires=0)
(!accountExpires=9223372036854775807)(accountExpires<=currentTime) (accountExpires>=givenTime))"

Soon-to-Expire User Accounts
It generates the list of all user accounts that will expire within the given number of days.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(!accountExpires=0)
(!accountExpires=9223372036854775807)(!accountExpires<=currentTime )(accountExpires<=givenTime))"

Account Never Expire Users
It generates the list of all user accounts which will never expire.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(|(accountExpires=0)
(accountExpires=9223372036854775807)))"

Logon

Inactive Users
It generates the list of all users who have not logged on for the past 'n' days. The inactive users are determined based on their last logon time. All the domain controllers are scanned for the last logon time to ensure accuracy. If any of the DC's could not be contacted, the list generation will fail.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(|(!lastlogon=*)(lastlogon<=givenTime)))"

Recently Logged on Users
It generates the list of all users who have logged during the past 'n' days. The recently logged on users are determined based on their last logon time. All the domain controllers are scanned for the last logon time to ensure accuracy. If any of the DC's could not be contacted, the list generation will fail.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(lastlogon>=givenTime))

Users Never Logged On
It generates the list of all users who have not logged on to the domain. The Users never logged on are determined based on their last logon time. All the domain controllers are scanned for the last logon time to ensure accuracy. If any of the DC's could not be contacted, the list generation will fail.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(|(lastlogon=0)(!lastlogon=*)))"

Enabled Users
It generates the list of all enabled user accounts.

How it works: This view is generated by querying the Directory Service with the filter
"(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(!userAccountControl:1.2.840.113556.1.4.803:=2))"

Password

Recently Bad Logged on Users

It generates the list of all users who tried to logon with bad password.

How it works: This view is generated by querying the Directory Service with the filter "(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(badPasswordTime>=givenTime))"

Users whose Password Never Expires
It generates the list of all users whose password never expires.

How it works: This view is generated by querying the Directory Service with the filter "(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(userAccountControl:1.2.840.113556.1.4.803:=65536))"

Password Expired Users
It generates the list of all users whose passwords are expired.

How it works: This view is generated by querying the Directory Service with the filter "(&(objectCategory=person)(objectClass=user)(!(sAMAccountType=805306370))(!userAccountControl:1.2.840.113556.1.4.803:=65536)
(!pwdLastSet=0)(pwdLastSet<=time based on maximum password age))"

Soon-to-Expire User Passwords
It generates the list of all users whose passwords will expire in ‘n’ days

How it works: This view is generated by querying the Directory Service with the filter "(&(objectCategory=person)(objectClass=user)(!(sAMAccountType=805306370))(!use rAccountControl:1.2.840.113556.1.4.803:=65536)(!pwdLastSet<={0})(pwdLastSet<=time based on maximum password age and the given time))"

Password Changed Users
It generates the list of all users whose passwords are modified during the given ‘n’ days

How it works: This view is generated by querying the Directory Service with the filter "(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(!pwdLastSet=0)(!pwdLastSet<=givenTime))"

Password Unchanged Users
It generates the list of all users whose passwords are not modified during the given ‘n’ days

How it works: This view is generated by querying the Directory Service with the filter "(&(objectCategory=person)(objectClass=user)(!sAMAccountType=805306370)(!pwdLastSet=0)(!pwdLastSet>=givenTime))"

分享到:
评论

相关推荐

    adhoc 网络管理协议

    We present a protocol for managing mobile wireless ...implemented the protocol along with a graphical user interface that allows a manager to change the view or specify management parameters on the fly

    Android代码-ScrollChoice

    Scrollable view which can be used to give different choices to user with nice ui. Preview Add With Gradle Dependency compile 'com.webianks.library:scroll-choice:1.0.1' Maven: com.webianks.library ...

    P-CAD 2004 PCS User's Guide.pdf

    With PCS, designers can comprehensively view and manipulate Schematic and PCB design rules in rule-precedence order.

    Learning iOS Programming, 2nd Edition.pdf

    via ad hoc distribution or for the App Store. Chapter 14, Going Further This chapter provides a collection of pointers to more advanced material on the topics we covered in the book, as well as ...

    仿58同城Fang58com201317.rar

    │ │ Ad.asp │ │ adconfig.asp │ │ Add.asp │ │ Alipay_md5.asp │ │ Alipay_Payto.asp │ │ body.Fix │ │ CheckPass.asp │ │ class.asp │ │ class1.asp │ │ comindex.asp │ │ company.asp │ │...

    Communicating Embedded Systems: Networks Applications

    This book's subject overlaps with the cases of a MANET [Mobile Ad Hoc Network] and a sensor network, where the latter might typically be composed of static nodes. The embedded systems of the book ...

    4.1.2-PayPlans.zip

    Account registration integration: PayPlans built-in form, EasySocial, Community Builder, Ad Agency, JFB Connect, JomSocial, and Joomla. Invisible reCAPTCHA support on registration form. Export ...

    淘宝达人商城淘宝TOP程序PHP圣诞版

    2.list.php 和view.php 这2个文件有GOOGLE的广告代码,你可以到GOOGLE去申请合作,然后把上面2个文件的相关代码替代掉google_ad_client = "pub-7012568171456992"; 把pub-7012568171456992 换成自己的GOOGLE 的帐号...

    淘宝达人商城TOPapi程序淘宝达人店铺街内附API程序

    2.list.php 和view.php 这2个文件有GOOGLE的广告代码,你可以到GOOGLE去申请合作,然后把上面2个文件的相关代码替代掉google_ad_client = "pub-7012568171456992"; 把pub-7012568171456992 换成自己的GOOGLE 的帐号...

    DC license 安装——SCL文件

    安装common和linux前先安装SCL 详细安装教程请见:http://wenku.baidu.com/view/5e861ea7284ac850ad024242.html 或 http://bbs.eetop.cn/?fromuser=

    acapAC.log

    Enter system view, return user view with Ctrl+Z. [AC6605]sys AC1 ################配置VLAN1路由信息并启用并应用DHCP到vlan1 [AC1]dhcp enable Info: The operation may take a few seconds. Please wait for a...

    AfficheurPublic:由NodeJS支持的公共显示,可从服务器向连接的Web客户端广播信息

    远处的每个VIEW修改(Web URL)都需要通过mongodb内部的数据库(afficheurdb)进行身份验证(集合:用户) 每个USER都是由mongodb中的此模式组成的:({'user':'ChoosenUserID','pass':'ChoosenUserPassword','...

    Security of Self-Organizing Networks MANET, WSN, WMN, VANET.pdf

    or long-term associations on ad hoc basis: for example, pairing a Bluetooth-enabled headset with a mobile phone or an MP3 player (short term) and pairing of a PDA with home devices in order to control...

    Active Directory Cookbook, 3rd Edition.pdf

    Covers how to delegate control, view and modify permissions, view effective permissions, and manage Kerberos tickets. Chapter 15, Logging, Monitoring, and Quotas Covers how to enable auditing, ...

    MiTeC System Information Component Suite 11.3.0 For D7 破解

    + Resource Meter - displays User, GDI and System resources + Installed Software - detects installed software and Microsoft serial numbers + USB Devices - demonstrates USB ports and devices ...

    A盾电脑防护

    //*AD下: //* www.3600safe.com 是一个内核安全编程技术网站,收集了各种神牛的技术文章, //* 搞内核编程的不妨把它当成一个资料库 :) //* //***************************************************************...

    asp.net mvc

    Possible values are input (while the user is typing), blur (after the user is done typing and moves to another field), and submit (when the user submits the form). Bug Fixes The following bugs have ...

    WordPress Top Plugins.pdf

    Cimy User Extra Fields 153 Pre-Publish Reminder 154 Edit Flow 155 Audit Trail 157 WP-CMS Post Control 158 Guest Blogger 159 Adding a new article import 160 Subscribe to Author Posts Feed 161 ...

    DameWare.NT 8.0.0.102程序及破解补丁

    运行DameWare管理工具主程序,它首先会扫描整个局域网,如AD活动目录、Exchange邮件服务器、域控制器、工作组、服务器和客户机,接着将扫描的结果显示在主窗口的“Browser”框中,这样网络管理员就可以开始对局域网...

Global site tag (gtag.js) - Google Analytics