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
Our thinking
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
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
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
Read More
Easily create and install Launch Daemons on macOS or OS X
I recently needed to have a script execute on a daily basis - previously this would have been a task for cron however it's been deprecated (yet still all there) in macOS since something like 10.4. The accepted way to do...
Read More
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
Read More
Recursively Propagate Permissions on a Synology NAS with synoacltool
Synology DSM lets you do some pretty complex things with permissions on files and folders, however occasionally things can get a bit mixed up and it's difficult to see what's happening and even more difficult to recover from it. Whilst you...
Read More
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
Read More
Give an Azure AD user Local Administrator user privileges on Windows 10
When you join a Windows 10 machine to Azure AD, the user account you use to join to the domain is automatically given local administrator permissions to the machine. If you noodle around in the Azure management portal, there doesn't...
Read More
Read More
Fix file timestamps with dates in the future on OS X or Unix/Linux
I recently needed to fix a heap of files with invalid timestamps for a client to sync between two sites. The issue was that some files had modification dates in the year 2032 or something like that. With a 2-way...
Read More
Read More