Category

Active Directory

7 articles in this category

Duplicate Active Directory Group with Members from PowerShell

2014-11-04 1 min read

Fireup your PowerShell ISE, modify to your needs, and run ! Please leave comments, suggestions below ! Import-Module ActiveDirectory # Determine the base OU $Path = 'OU=Accounting,OU=-Department,OU=Office,DC=MyDomain,DC=net' #…

Get FSMO Roles in domain with Powershell

2014-11-04 1 min read

First, fire up a PowerShell windows with the Active Directory module. If you have the Admins tools installed, it should be called “Active Directory Module for Windows PowerShell”…

Active Directory Picture Upload software

2013-11-08 1 min read

Thanks to the original poster, please visit his post here: http://blog.cjwdev.co.uk/2010/10/31/ad-photo-edit-a-program-for-uploading-images-into-the-active-directory-thumbnailphoto-attribute-used-by-outlook-2010/    

Install and configure Certificate Authority Enterprise Root CA and Subordinate

2013-11-08 1 min read

Thanks to all the origninal poster, please visit each link:   Install and configure an Enterprise Root CA http://technet.microsoft.com/en-us/library/cc731183.aspx http://www.vkernel.ro/blog/install-certification-authority-in-windows-server-2008-r2   Install and configure a Subordiante CA: http://technet.microsoft.com/en-us/library/cc772192.aspx  …

List all computer accounts in an OU

2013-11-08 1 min read

Open a commande window, and type this: DSQUERY COMPUTER "OU=YUL-User+Computers,OU=YUL,DC=NA,DC=manwin,DC=local" -o rdn -limit 1000 > c:\machines.txt   This will create a text file on your C:\ drive, with…