Office is showing older version instead of the updated version

Problem: In this particular case, user was running Office Standard 2016 and I upgraded to Office 365 Business Apps. Upon checking the account, it still showed as Standard. This also affected the Online Archive mailbox in Outlook. Solution: (h/t https://www.thewindowsclub.com/how-to-uninstall-microsoft-office-product-key) Continue reading Office is showing older version instead of the updated version

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

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