“Active Directory Users and Computers” MMC snap-in for Windows 7?

前端 未结 11 1331
傲寒
傲寒 2021-01-29 22:46

Is there an equivalent tool available for use in Windows 7? I just need to browse the membership of some small Active Directory groups that are deep within a huge hierarchy, so

11条回答
  •  一生所求
    2021-01-29 23:18

    I'm not allowed to use Turn Windows features on or off, but running all of these commands in an elevated command prompt (Run as Administrator) finally got Active Directory Users and Computers to show up under Administrative Tools on the start menu:

    dism /online /enable-feature /featurename:RemoteServerAdministrationTools
    dism /online /enable-feature /featurename:RemoteServerAdministrationTools-Roles
    dism /online /enable-feature /featurename:RemoteServerAdministrationTools-Roles-AD
    dism /online /enable-feature /featurename:RemoteServerAdministrationTools-Roles-AD-DS
    dism /online /enable-feature /featurename:RemoteServerAdministrationTools-Roles-AD-DS-SnapIns
    dism /online /enable-feature /featurename:RemoteServerAdministrationTools-Roles-AD-DS-AdministrativeCenter
    dism /online /enable-feature /featurename:RemoteServerAdministrationTools-Roles-AD-DS-NIS
    dism /online /enable-feature /featurename:RemoteServerAdministrationTools-Roles-AD-LDS
    dism /online /enable-feature /featurename:RemoteServerAdministrationTools-Roles-AD-Powershell
    

    I had downloaded and installed the RSAT (Windows 7 Link, Windows Vista Link) before running these commands.

    It's quite likely that this is more than you features than you actually need, but at least it's not too few.

提交回复
热议问题