active-directory – 如何找出我所属的AD组?

前端之家收集整理的这篇文章主要介绍了active-directory – 如何找出我所属的AD组?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在企业环境中运行 @L_301_0@ XP桌面.我怎样才能知道我所属的AD群组?
尝试运行gpresult / R for RSoP summary或​​gpresult / V,以便作为计算机管理员从命令行输出详细信息.它应该输出这样的东西:
  1. C:\Windows\system32>gpresult /V
  2.  
  3. Microsoft (R) Windows (R) Operating System Group Policy Result tool v2.0
  4. Copyright (C) Microsoft Corp. 1981-2001
  5.  
  6. Created On 2/10/2010 at 10:27:41 AM
  7.  
  8.  
  9. RSOP data for OQMSupport01\- on OQMSUPPORT01 : Logging Mode
  10. ------------------------------------------------------------
  11.  
  12. OS Configuration: Standalone Workstation
  13. OS Version: 6.1.7600
  14. Site Name: N/A
  15. Roaming Profile: N/A
  16. Local Profile: C:\Users\-
  17. Connected over a slow link?: No
  18.  
  19.  
  20. COMPUTER SETTINGS
  21. ------------------
  22.  
  23. Last time Group Policy was applied: 2/10/2010 at 10:16:09 AM
  24. Group Policy was applied from: N/A
  25. Group Policy slow link threshold: 500 kbps
  26. Domain Name: OQMSUPPORT01
  27. Domain Type: <Local Computer>
  28.  
  29. Applied Group Policy Objects
  30. -----------------------------
  31. N/A
  32.  
  33. The following GPOs were not applied because they were filtered out
  34. -------------------------------------------------------------------
  35. Local Group Policy
  36. Filtering: Not Applied (Empty)
  37.  
  38. The computer is a part of the following security groups
  39. -------------------------------------------------------
  40. System Mandatory Level
  41. Everyone
  42. Debugger Users
  43. IIS_WPG
  44. sqlServer2005MSsqlUser$OQMSUPPORT01$ACT7
  45. sqlServerMSsqlServerADHelperUser$OQMSUPPORT01
  46. BUILTIN\Users
  47. NT AUTHORITY\SERVICE
  48. CONSOLE logoN
  49. NT AUTHORITY\Authenticated Users
  50. This Organization
  51. BDESVC
  52. BITS
  53. CertPropSvc
  54. EapHost
  55. hkmsvc
  56. IKEEXT
  57. iphlpsvc
  58. LanmanServer
  59. MMCSS
  60. MSiSCSI
  61. RasAuto
  62. RasMan
  63. RemoteAccess
  64. Schedule
  65. SCPolicySvc
  66. SENS
  67. SessionEnv
  68. SharedAccess
  69. ShellHWDetection
  70. wercplsupport
  71. Winmgmt
  72. wuauserv
  73. LOCAL
  74. BUILTIN\Administrators
  75.  
  76. USER SETTINGS
  77. --------------
  78.  
  79. Last time Group Policy was applied: 2/10/2010 at 10:00:51 AM
  80. Group Policy was applied from: N/A
  81. Group Policy slow link threshold: 500 kbps
  82. Domain Name: OQMSupport01
  83. Domain Type: <Local Computer>
  84.  
  85. The user is a part of the following security groups
  86. ---------------------------------------------------
  87. None
  88. Everyone
  89. Debugger Users
  90. HomeUsers
  91. BUILTIN\Administrators
  92. BUILTIN\Users
  93. NT AUTHORITY\INTERACTIVE
  94. CONSOLE logoN
  95. NT AUTHORITY\Authenticated Users
  96. This Organization
  97. LOCAL
  98. NTLM Authentication
  99. High Mandatory Level
  100.  
  101. The user has the following security privileges
  102. ----------------------------------------------
  103.  
  104. Bypass traverse checking
  105. Manage auditing and security log
  106. Back up files and directories
  107. Restore files and directories
  108. Change the system time
  109. Shut down the system
  110. Force shutdown from a remote system
  111. Take ownership of files or other objects
  112. Debug programs
  113. Modify firmware environment values
  114. Profile system performance
  115. Profile single process
  116. Increase scheduling priority
  117. Load and unload device drivers
  118. Create a pagefile
  119. Adjust memory quotas for a process
  120. Remove computer from docking station
  121. Perform volume maintenance tasks
  122. Impersonate a client after authentication
  123. Create global objects
  124. Change the time zone
  125. Create symbolic links
  126. Increase a process working set

或者,如果使用ActiveDirectory PowerShell模块(或带有远程服务器管理工​​具的客户端操作系统)登录到Windows Server操作系统,请尝试使用Get-ADPrincipalGroupMembership cmdlet:

  1. C:\Users\username\Documents> Get-ADPrincipalGroupMembership username | Select name
  2.  
  3. name
  4. ----
  5. Domain Users
  6. All
  7. Announcements
  8. employees_US
  9. remotes
  10. ceo-report
  11. all-engineering
  12. not-sales
  13. Global-NotSales

猜你在找的Windows相关文章