OneDrive won’t uninstall

Problem: OneDrive won’t uninstall Answer: Open Regedit, go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\OneDrive, and delete it Also find HKEY_CURRENT_USER\SOFTWARE\Microsoft\OneDrive, and delete it Also find C:\Users\Username\AppData\Local\Microsoft\OneDrive and delete it Then go to C:\Windows\SysWOW64\OneDriveSetup.exe to reinstall Have the user login to OneDrive Go into portal.office.com, Continue reading OneDrive won’t uninstall

Plesk server running out of space

Problem: Plesk is running out of space Solution: Update (2022) The journal file was 4.3GB Run this: journalctl –disk-usage (it’ll tell you how large the journal is)Run this: journalctl –vacuum-size=200M (it’ll clean up the journal) Update (2024)

Office 365 – Removing shared permissions to a calendar via PowerShell

Problem: Client wanted to remove select users from a shared calendar Solution:(h/t IQinIT) $cred = Get-Credential $session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $cred -Authentication Basic –AllowRedirection Import-PSSession $session Get-MailboxFolderPermission -Identity user@domain.com:\Calendar| Select User, AccessRights, Deny Remove-MailboxFolderPermission -Identity user@domain.com:\Calendar -User user2@domain.com