February 2014
M T W T F S S
 12
3456789
10111213141516
17181920212223
2425262728  

Categories

February 2014
M T W T F S S
 12
3456789
10111213141516
17181920212223
2425262728  

Dsmod

Reset Password and Force Change at Logon for an Entire OU: dsquery user “OU=Singapore,OU=Staff,DC=rmohan,DC=com” | dsmod user -pwd Password1 -mustchpwd yes

Change “company” AD attribute for all Users in an Entire OU: dsquery user “OU=Singapore,OU=Staff,DC=rmohan,DC=com” | dsmod user -company “rmohan”

Return the DN of all users in an OU: dsquery user “OU=Singapore,OU=Staff,DC=rmohan,DC=com”

“CN=User1,OU=Singapore,OU=Staff,DC=rmohan,DC=com” “CN=User2,OU=Singapore,OU=Staff,DC=rmohan,DC=com” “CN=User3,OU=Singapore,OU=Staff,DC=rmohan,DC=com”

[…]

Importing and Exporting Active Directory Data

There are two ways to import and export Active Directory data:

1. LDIFDE: Data is exported from the AD object by object to a file in the Lightweight Data Interchange Format (LDIF) that is saved with a .ldf extension. Notepad or Wordpad can be used to edit the exported data. Furthermore, this utility can create, […]

2012 Offline Domain Join – Concept

t involves 2 steps: 1. Provisioning (On Domain Controller) 2. Offline Domain Join (On Client Machine)

Provisioning In this process, it will create an account for the client machine in Active Directory and will provide a file (BLOB) which will have the complete information about the domain controller and the domain which the client machine […]

Powershell

First, get some help

Get-Help What better place to start than with the command that will show how to get help with the commands. Get-Helpcan be used with any command. Maybe you’re curious how the Add-Computer command works. Simply typeGet-Help -Name Add-Computer into Powershell, hit enter, and be rewarded with command details such as Name, […]