In this article, we will see how to install Server 2019 and configure Active Directory Services. It is a simple article for beginners and those who want to learn from scratch. I have used Hyper-V Platform for this setup and configured Virtual machines and Networking for the simulation. Insert the Server Operating System in the […]
In this article, we will see how to install and configure Certificate Services in Server 2019.. Click on Add Roles and Features Click on Next Select Role-based or feature-based installation and Click on Next Select Server to install and Click on Next Select Active Directory Certificate Services and Click on Next Select include management tools(if […]
In this article, I will explain how to install Active Directory Federation Services on Server 2019, Let’s begin, Open Server Manager, Click on Add Roles and Features, Click Next, Select Role-based or features-based installation and Click Next, Select Server and Click Next, Select Active Directory Federation Services and Click on Next As we are installing […]
In this Article, we will see how to convert the Federated domain which is using the ADFS Authentication using against the On-premises Active Directory to Managed Authentication against Azure Active Directory(AAD). ADFS Authentication is Token Based Authentication and it is very secured Authentication wherein it has some limitation as it is required Web Application Proxy(WAP) […]
After long development, Windows server 2019 got released post fixes of the bugs which are got reported last year(2018). We have seen in the previous article about how to install the Server 2019 in full core machines. In this article, we will see how to install with GUI(Graphical User interface). Since it is still in […]
Noticed Error 400 Bad request in ADFS when trying to reach adfs services for authentication. ideally it happens if created CNAME record for ADFS Services. ADFS Will not support mapping the CNAME Record for the ADFS. It is recommended to have A record for the ADFS. Once created correct record, restart ADFS services in ADFS […]
In many Organizations there will be many customized attributes like EmployeeID, Career information, HR Details and so on. It is needed for many applications to work. How to install AADConnect using the Express Installation, Please refer the Article How to install AADConnect using the Express Installation,Please refer the Article Now organizations are started migrating the […]
Microsoft has released Next version of Windows Server Edition. since the latest version still in the preview mode, we need to wait for the RTM release for the public to have more detailed about the features. In this article, we will see how to install Windows Server 2019 in detailed. To download Preview Edition of […]
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 […]
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 […]
- 1
- 2