Offline Domain Join (ODJ) using the Direct Access 2012

In this article,  we will see how make Computer offline domain Join without connecting to the Corporate Network. Tested the Offline domain Join (ODJ) and it is working as expected. Requirements: Required Client OS Versions :Windows 8 and Above Versions DC Requirements : Server 2008 r2 and above. Admin access : user must have permission […]

Computer trust

How to fix AD Computer trust error and how to solve them in multiple ways

In this article We see about Trust relationship  between this workstation and the primary domain failed. For Example, user is trying to login in workstation System. Enter the User Name and password. In database on the server does not Have  computer account for workstation trust relationship. Let’s see How to fix the issue in multiple […]

How to add domain users to the Local Groups using PowerShell

In this Article, we will see how to add user or users or Computer using Powershell. If you want to add users to the specific one Group, you can use the below command.. $domain=”Windowstechpro.com” $Computer = $env:COMPUTERNAME; $ADSIComputer = [ADSI](“WinNT://$Computer,computer”); $SGName = $ADSIComputer.psbase.children.find(‘Administrators’) function Groupmember($number) { $SGName.add(“WinNT://”+$domain+”/”+$number ) } Groupmember “radhakrishnan.govindan”  Groupmember “veterivel.Madeshwaran” In the […]

How to get AD Computers Report in Specific Date Format Using Powershell

How to get AD Computers Report in Specific Date Format Using PowerShell

In my Previous AD Powershell Post, I have showed how to generate AD Computers report with specific Paramenters, Wherein the LastLogonDate attribute value format will not be in the same format if your AD Infrastructure is not configured with specific time format. Below output report is an example,You will see the report date values are has […]

Group Policy in Windows server 2016

Creating and managing a Group Policy in Windows server 2016

In this article, we see about How to create Group policy in windows server 2016. First open Group Policy Management console by using server manager. By using GPM we can assign various polices for Organizational units(OU). We show simple example to create GP. Right click domain name and click to create GPO in this domain […]

How to Create AD DS Snapshot in Server 2016 using Ntdsutil

How to Create AD DS Snapshot in Server 2016 using Ntdsutil

In this Article, we will see how to create a snapshot of the AD DS using NTDSUTIL. Tested in the Server 2016 AD DS wherein the steps and process remains same for Server 2012 and 2008 AD DS. Open Command Prompt, In my case i have selected PowerShell which also can perform CMD Commands. Type […]

FSMO Roles using simple Command

How to get FSMO Roles using simple Command

Flexible Single Master Operation (FSMO) is very key part in the Active Directory environment. being Active directory administrator, we should know where are these roles placed and health of the services. Below is the simple Command to get the FSMO roles and the server where it is placed. You can use below command to get the FSMO role […]

How to Clone Domain Controllers in Server 2012

Today I am very excited to take you through the Wonderful Article which I am going to show you how to clone domain controllers in Server 2012 Since I am going to cover only practical way, There is no much Theoretical explanations can be found here. If you want that as well, Please go through […]

  • 1
  • 2