powershell

Clear-DnsServerCache

Clear-DnsServerCache is accessible with the help of DnsServer module. To configure DnsServer, go through this link. Synopsis Clears resource records from a cache on the DNS server. Description…

powershell

Add-DnsServerZoneTransferPolicy

Add-DnsServerZoneTransferPolicy is accessible with the help of DnsServer module. To configure DnsServer, go through this link. Synopsis Adds a zone transfer policy to a DNS server. Description The…

powershell

Add-DnsServerZoneScope

Add-DnsServerZoneScope is accessible with the help of DnsServer module. To configure DnsServer, go through this link. Synopsis Adds a zone scope to an existing zone. Description The Add-DnsServerZoneScope…

powershell

Add-DnsServerZoneDelegation

Add-DnsServerZoneDelegation is accessible with the help of DnsServer module. To configure DnsServer, go through this link. Synopsis Adds a new delegated DNS zone to an existing zone. Description…

Java dev

4 ways to Join two Lists in Java

In this post, we will see how to join two lists in Java using Plain Java, Java 8, Guava, and Apache Commons Collections. And try…