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 Settings using Powershell

How to Update DNS Settings using PowerShell

In this article, we will see how to modify the DNSSettings using PowerShell. it will help for the core server modifications as well. To get the Existing DNS Settings run the below command, Get-DnsClientServerAddress To modify the DNS Settings, use the below command, Set-DnsClientServerAddress -InterfaceIndex 12 -ServerAddresses (“10.99.3.50″,”10.1.13.178”) Note: Need to get Interface Index for […]

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

Windows Server

How to configure an authoritative time server in Windows Server

In this article we see about how to configure the Windows Time service and troubleshoot when the Windows Time service doesn’t work correctly. To check the PDC Server for Time Synchronization  and to configure the PDC master by using an internal hardware clock, follow these steps: Select Start > Run, type regedit, and then select OK. Click HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config\AnnounceFlags Right-click on Announce Flags, […]

ADFS High Availability and Disaster Recovery Overlook

In this Article, We will see some of the basic concepts how to setup ADFS High Availability and Disaster Recovery What is ADFS?? Adfs is simplified authentication method which is claims based Authentication(CBD) to applications like Exchange online, cloud applications and so on. it will enable the organizations to avail the Single sign-on  beyond the organizational boundaries […]

ADFS3.0 Installation and Configuration with SQL Mirroring

ADFS is the one of the great feature and will cover how it is working in upcoming articles. Will see the installation and configuration in this article. Okay., lets begin, How to install ADFS with built-in Databases and configure has been explained in the article. Here we will see how to configure how to add […]

The Resource you are trying to access is not available error in Server 2016

Below is the error when you trying to open IdpinitiatedSignon page, You will get the error that the Resource you are trying to access is not available. In Event Viewer, In Adfs-properties, you can see that EnableIdPInitiatedSignonpage is disabled. Hence that you’re not able to login To Resolve the issue, Run the below PowerShell command, […]

  • 1
  • 2