So this is my second PowerShell script created by me. The first one was so simple and I use it in my XenDesktop environment. This script on the other hand, is aprt of my initiative in performing Active Directory clean-up in my environment. The task of the script is simple - check the IP address of a machine name, then check the hostname of that IP address. - If the machine name (A host record) and the hostname (PTR record) is similar, we are good. - If the machine name (A host record) and the hostname (PTR record) is different, error prompted - If the machine name (A host record) is available but the hostname (no PTR record) is not, error prompted - If the machine is not avaiable (no A host record), error prompted. I use $PSScriptRoot so the location of the script is dynamic, it does not necessarily need to be put at a specific location. This is only part 1. I wish to add more features so it could be better next time. ###################################