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
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
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