Using PowerShell to change DNS servers

  Using PowerShell to change DNS servers automatically EXAMPLE 1 PS C:\>Set-DnsClientServerAddress -InterfaceIndex 12 -ServerAddresses (“10.0.0.1″,”10.0.0.2”) This example sets the DNS server addresses on a specified interface with the index value of 12. EXAMPLE 2 PS C:\>Set-DnsClientServerAddress –InterfaceIndex 12 -ResetServerAddresses This example resets the DNS client to use the default DNS server addresses specified by […]

Installing PECL mods for PHP on IIS

Although PHP.net mentions there are no DLLs for PECL they can be found here windows.php.net/downloads/pecl/releases/ Find the module you need, select a version (I always opt for the most recent version that will work with my flavor of PHP). To figure out which version you need run the phpinfo() command on your server. In the […]