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 […]
Posts from December 2014
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 […]
Delta-Homes / Dela-Homes on Windows 8
Delta-Homes.com browser high-jack is one of the most annoying things there is. Users seem to get it out of thin air and it is very hard to remove. I have spend about 30 minutes to document what is going on with this high-jack and how to resolve this. First of you will need to remove […]
Export all MySQL databases for backup
http://dev.mysql.com/downloads/utilities/ backup user with the following global rights; SELECT, INDEX, SHOW DATABASES, CREATE TEMPORARY TABLES, LOCK TABLES, EVENT, TRIGGER, SHOW VIEW C:\Program Files\MySQL\MySQL Server 5.6\bin\mysqldump.exe -u USERNAME -pPASSWORDHERE –all-databases –result-file=LOCATION