Our thinking


Cumulus Field Formulas

This is pretty obscure stuff - I'm putting it here so I can refer to it later down the track when I've completely forgotten what I did. In Canto Cumulus, you can set the value of a field using a...
Read More

Configure L2TP VPN Server on Ubiquity EdgeRouter Lite

As Apple have removed PPTP VPN support from macOS Sierra (10.12 and iOS 10) I'm changing clients over to L2TP over IPSec VPNs instead. Once the VPN server is configured, there's not much difference to configuring it at the client end...
Read More

Get system specs on an HP Server

Correct me if I'm wrong, but Windows doesn't really have anything quite like the System Information app on macOS. If you've got an HP server however, you can get some fairly detailed information about the configuration of the server as...
Read More

Find (and delete) duplicate files

I've had issues in the past where a Kerio Connect mail server talking to Apple Mail can somehow end up duplicating hundreds or even thousands of emails in mailboxes. I never got to the bottom of what was causing it,...
Read More

Find Large Items in Office 365 Mailboxes

$UserCredential = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/\ -Credential $UserCredential -Authentication Basic -AllowRedirection Import-PSSession $Session Get-MailboxFolderStatistics -Identity [email protected] -IncludeAnalysis -FolderScope All\ | Select-Object Name,FolderPath,ItemsInFolder,FolderSize,TopSubject,TopSubjectSize,TopSubjectCount,TopSubjectPath | Out-file C:\Users\%username%\Desktop\UserMailboxResults.txt  
Read More

Disable Azure AD users from having to set up a PIN on Windows 10

This information is condensed from Håvard Siegel Haukeberg's blog over at https://haukeberg.wordpress.com/2016/02/24/disable-pin-code-when-joining-azure-ad/ You need to log in as the actual admin user for the domain, you can't do this through a partner account with delegated administration. First up, go to the Azure...
Read More