Removing old 1Password vaults from the selection menu

After doing alot of fiddling with my password vaults for the Windows Phone app I had a large list of unused password vaults in the quick select menu. To remove these I found the following location: HKEY_CURRENT_USER\Software\AgileBits\1Password 4\MRU. Here you can delete the keys for vaults you no longer use.

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 […]

Custom Active Directory Domain Services Filter

Using Event Viewer to find error states in the “Active Directory Domain Services” role can be a big pain. I have created a custom filter that only displays errors, warnings and criticals. <QueryList>   <Query Id=”0″ Path=”Directory Service”>     <Select Path=”Directory Service”>*[System[Provider[@Name=’Microsoft-Windows-ActiveDirectory_DomainService’] and (Level=1  or Level=2 or Level=3)]]</Select>     <Select Path=”Directory Service”>*[System[Provider[@Name=’NTDS ISAM’] and (Level=1  […]