+ Post New Thread
Results 1 to 2 of 2
Windows 7 Thread, AD User/Computers Snapin in Technical; Is it possable on Windows 7 to just grab the required DLL's for AD Users and Computers that are installed ...
  1. #1
    Quackers's Avatar
    Join Date
    Jan 2006
    Posts
    1,103
    Thank Post
    32
    Thanked 85 Times in 73 Posts
    Rep Power
    42

    AD User/Computers Snapin

    Is it possable on Windows 7 to just grab the required DLL's for AD Users and Computers that are installed with RSAT and repackage them up?

    We use to use a custom Microsoft Managment Console for Password Reset control for teachers when we were XP/2003 Server, was easy just push out the MSI for the Remote Admin Tools and the custom MMC would work.

    Windows 7 it just all got messy, even if i deploy the RSAT tools, i then have to enable them through Programs and Features then turn the feature on.

    Anybody know what dll's need to be registered for AD Users/Computers MMC to run? or is that just not going to work?

  2. IDG Tech News
  3. #2

    FN-GM's Avatar
    Join Date
    Jun 2007
    Location
    UK
    Posts
    14,096
    Thank Post
    735
    Thanked 1,397 Times in 1,224 Posts
    Blog Entries
    9
    Rep Power
    368
    If all else fails this is what we use to install the RSAT

    Code:
    :: Set Environment
     @echo OFF
     CLS
     COLOR 3f
     PROMPT $s
    
    ::  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
     
    :: Windows7Var
     IF %processor_architecture%==x86 GOTO 7x86Var
     IF %processor_architecture%==AMD64 GOTO 7x64Var
     IF %processor_architecture%==IA64 GOTO 7x64Var
     GOTO EOF
     
    :7x86Var
     ECHO This PC is running Windows 7 32Bit
    
    :: *** Run Command ***
    if exist "C:\Software-Deployment-Logs\Microsoft-Windows-7-SP1-RSAT-X86.log" goto :eof ELSE
    wusa "\\server\share\Microsoft-Windows-7-SP1-RSAT\Windows6.1-KB958830-x86-RefreshPkg.msu" /quiet /norestart /log:"C:\Software-Deployment-Logs\Microsoft-Windows-7-SP1-RSAT-X86.log"
    dism /Online /Enable-Feature /FeatureName:RemoteServerAdministrationTools /FeatureName:RemoteServerAdministrationTools-Roles /FeatureName:RemoteServerAdministrationTools-Roles-AD /FeatureName:RemoteServerAdministrationTools-Roles-AD-DS /FeatureName:RemoteServerAdministrationTools-Roles-AD-DS-SnapIns /FeatureName:RemoteServerAdministrationTools-Roles-AD-DS-AdministrativeCenter /FeatureName:RemoteServerAdministrationTools-Roles-AD-DS-NIS /FeatureName:RemoteServerAdministrationTools-Roles-AD-LDS /FeatureName:RemoteServerAdministrationTools-Roles-AD-Powershell
     GOTO EOF
     
    ::  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
     
    :7x64Var
     ECHO This PC is running Windows 7 64Bit
     
    :: *** ADD Shortcuts ***
    if exist "C:\Software-Deployment-Logs\Microsoft-Windows-7-SP1-RSAT-X64.log" goto :eof ELSE
    wusa "\\server\share\Windows6.1-KB958830-x64-RefreshPkg.msu" /quiet /norestart /log:"C:\Software-Deployment-Logs\Microsoft-Windows-7-SP1-RSAT-X64.log"
    dism /Online /Enable-Feature /FeatureName:RemoteServerAdministrationTools /FeatureName:RemoteServerAdministrationTools-Roles /FeatureName:RemoteServerAdministrationTools-Roles-AD /FeatureName:RemoteServerAdministrationTools-Roles-AD-DS /FeatureName:RemoteServerAdministrationTools-Roles-AD-DS-SnapIns /FeatureName:RemoteServerAdministrationTools-Roles-AD-DS-AdministrativeCenter /FeatureName:RemoteServerAdministrationTools-Roles-AD-DS-NIS /FeatureName:RemoteServerAdministrationTools-Roles-AD-LDS /FeatureName:RemoteServerAdministrationTools-Roles-AD-Powershell
     GOTO EOF
     
    ::  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
     
    :EOF

SHARE:
+ Post New Thread

Similar Threads

  1. How do you filter AD users and computers...
    By kennysarmy in forum Windows
    Replies: 3
    Last Post: 29th September 2008, 12:51 PM
  2. Exchange AD users and computers
    By browolf in forum Windows
    Replies: 0
    Last Post: 4th December 2006, 10:59 AM
  3. Essential add-on for AD Users & Computers
    By ajbritton in forum Downloads
    Replies: 9
    Last Post: 10th August 2006, 02:08 PM
  4. Replies: 22
    Last Post: 15th May 2006, 10:50 AM
  5. AD User Manager
    By Dos_Box in forum Downloads
    Replies: 0
    Last Post: 27th September 2005, 09:56 PM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •