An adeptation of the script by Matthias R Jessen. # Get all mailboxes in the forest $Mailboxes = Get-User -OrganizationalUnit “Employees” | Get-Mailbox -ResultSize unlimited -IgnoreDefaultScope $ConfirmPreference = “None” # Iterate over each mailbox foreach($Mailbox in $Mailboxes) { try { # Try to run the example fix against the current $Mailbox […]
Author: Jodrik
Getting a VPN on Windows 10 working without default gateway
Found a great article here: http://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_web/how-to-disable-default-gateway-remote-in-vpm-with/6d4e1090-dbfc-4474-bcaf-cf4d60d0a2f8?auth=1 Commands are: Get-VpnConnection Set-VpnConnection -Name “myVPN” -SplitTunneling $True
How to get an A grade on SSLLabs with IIS 8.5 on Windows Server 2012 R2
After having some serious problems trying to find proper documentation for how to fix some of the bigger leaks in IIS (such as logjam, FREAK, POODLE) I became frustrated with the lack of documentation. Microsoft itself will point you to Nartac IIS Crypto which is a great tool, but I needed to roll these fixes out […]
Hoeveel informatie geeft je telefoon over jou weg?
Reis je regelmatig met de trein of zit je vaak bij dat leuke café met gratis WiFi, fijn hè? Vooral als je het dusdanig vaak doet dat je “automatisch aanmelden” hebt aangezet. Scheelt je weer dataverkeer op je abonnement, wie wil dat nou niet!? Jammer genoeg gebeuren er op de achtergrond nu alleen zaken waar […]
Using Chocolatey to install a new laptop
I always dread the moment I have to reinstall my own laptop for work or home because of all the software I have to put on it. Recently I have discovered chocolatey and this has made it a very easy installation procedure. I did have to drop and swap some programs from there but beyond that it has […]
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 […]
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