Our thinking


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