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 […]
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. […]
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 | […]
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 […]
In this Article, We are going to see how to Add Subject for the external mails. when I say this, you will get one question why should we add the Subject for External Mails specifically.. Right? There are lots of ways spammers are targeting users by using the Email address policies which are look genuine […]
In this Article, We are going to see how to Add disclaimer for the external mails. when I say this, you will get one question why should we add the disclaimer for External Mails specifically.. Right? There are lots of ways spammers are targeting users by using the Email address policies which are look genuine by nature […]
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 […]