Prevent Accidental Deletions in Azure

How to Install Certificate Services (AD CS) in Server 2019

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

Prevent Accidental Deletions in Azure

How to Install Active Directory Federation Services(ADFS) on Server 2019

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

Federated domain to Managed Domain

How to Convert Federated Domain to Managed Domain(Password Hash Sync(PHS))-Part 1

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

Windows Server 2019 Got Released

Windows Server 2019 Got Released

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

Error 400 Bad Request when connecting ADFS Services

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

Windows Server 2019 Got Released

Windows Server 2019 Step by Step Installation

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

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

  • 1
  • 2