Our thinking


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

Troubleshooting: Fetch a web page as Googlebot

I've had a couple of clients come to me recently after their WordPress site was pwned. Sometimes you're able to use a tool like Wordfence to clean it up and secure the site and it's all OK. Sometimes however it...
Read More