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 configure an authoritative time server in Windows Server

How to configure an authoritative time server in Windows Server

In this article we see how to configure the Windows Time service and troubleshoot when the Windows Time service is not working correctly. To check the PDC Server for Time Synchronization and to configure the PDC master server by using an internal hardware clock, follow these below steps: Open Registry on the PDC Role holder domain controller, […]

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 […]

Relationship between two domains in Server

Active Directory trust Relationship between two domains in Server 2016

In this article, we see about Trust relationship between two domains in Server 2016. So, first we link both two domains in active directory and trust and Domain A and Domain B have administrators Rights. They can easily create One-way and Two Way Trust relationship.Before proceeding, you need to ensure that the networks/forest on both […]

Powershell

How get a Installed programs using PowerShell

In this PowerhShell command, we will see how to get installed programs in the computer installed programs  information can be fetched using the WMI_Object using the Class: Win32_Product. it is very straight forward to get the installed applications. Run the command:  Get-WmiObject -Class Win32_Product -Computer COmputername it will get all the installed applications in the Computer. […]

How to Get All domain joined Computers List using the PowerShell

In this command, we will see how to get all the computers in the domain using the PowerShell Command. Use the below command to get the Complete Computers Reports.where the command has been enabled with filters where the required details to audit the Domain Joined Machine computers. Get-AdComputer -Resultsetsize 100000 -Filter * –Properties CanonicalName,DNSHostName,Enabled,IPv4Address,lastLogon,LastLogonDate,lastLogonTimestamp,Name,OperatingSystem,OperatingSystemServicePack,OperatingSystemVersion,whenCreated | […]

DNS Suffix Search using Group Policy

How to apply Multiple DNS Suffix Search using Group Policy

In this article, we see about DNS suffix search. Domain name, such as “www.windowstechpro.com.”. With this setting enabled, when a user submits a query for a single-label name, such as “example”, a local. DNS client attaches a suffix, such as “windowstechpro.com”, resulting in the query “www.windowstechpro.com”, before. sending the query to a DNS server. First […]

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 […]

Forward DNS

What is DNS?

Domain Name Servers (DNS) are the Internet’s equivalent of a phone book. They maintain a directory of domain names and translate them to Internet Protocol (IP) addresses. This is necessary because, although domain names are easy for people to remember, computers or machines, access websites based on IP addresses. DNS Port Number is 53 Types […]