Server 74.10 module 3


1. Installing server 2012 R2


2. Introduction to power shell 


3. Install and configure active directory domain

4. Add child domain to active directory domain

5. RODC- Read only domain controller

6. Create user graphically

7. Power shell graphically user interface
Domain = sam.org
Organization name = Academy
Name = Vijay Rathod
Given name = vijay
Surname = Rathod
-Displayname = vijay
Ou = Academy
dc = sam
dc = org
New-ADOrganizationalUnit Academy
* New-ADuser -Name "vijay Rathod" -Givenname vijay -Surname Rathod -Displayname vijay -path "ou=vijay Rathod,dc=sam,dc=org
*Set-Adaccountpassword "vijay Rathod"

(*There will be a prompt for first just click ok ,don't type password
There will be another same prompt type password and next same password to confirm it)

*Enable-Adaccount "vijay Rathod"
*New-Adgroup "marketing" -path "ou=vijay Rathod,dc=sam,dc=org" -Groupscop Global -Groupcategory security
*Add-Adgroupmember "marketing" -member "vijay Rathod"


To remove
*Remove-Ad "marketing"
*Remove-Aduser "vijay Rathod"
*Set-Adorganizational unit "ou=Academy,dc=Sam,dc=org" - protected FromAccidentalDeletion 0
*Remove-Adorganizational unit "ou=vijay Rathod"dc=Sam,dc=org"

Comments