Recently had an issue where Group Policies were not applying to a machine.Gpresult /r showed the group policy On checking the machine, the Up Time was over 30 […]
Author: paris
MYOB Outlook 2016 – A program is trying to access email-address Information
You will need to run the below as Administrator , if the use doesn’t have local admin you will need to change them to one then remove […]
How to Share Office 365 Shared Mailbox Calendar Externally with Users
With an account that has full access to the Shared Mailbox , login to Webmail and Choose “Open Another Mailbox”Enter the Shared Maibox and Click OKNext Click on the […]
ShadowCopyVolume Scheduled Task Failing with 0x2
In monitoring we recently saw a Scheduled Task for a Shadow Copy Job failing with 0x2.After running the Action manually in CMD I go the below errorC:\Windows\system32>C:\Windows\system32\vssadmin.exe […]
How to Limit a User in Security and Compliance Center Content Search to a single Mailbox
Recently a user needed to Search another user’s 100GB Archive and Mailbox. Outlook search was taking far too long.You can assign a user Permission to use the […]
How to find all Empty Folders in a 365 Mailbox
Get-MailboxFolderStatistics [email protected] | Where {$_.ItemsInFolder -eq 0} | Select Identity
Cannot Stop VPG in Zerto – Forcibly delete VPG in Error State : Undo Log Isn’t Empty can’t start new transaction
Recently I tried to stop a VPG in Zerto after some DR testing, however, the Stop failed and the errors showing where : Forcibly delete VPG in Error […]
Sharepoint “View in File Explorer” and Single Sign on AAD connect
A customer was using Sharepoint via office 365 using Drive Mappings to their different libraries. We use Network locations deployed via group policy to enable users to […]
Citrix Xen App Server frozen on Welcome Login Screen
Recently when trying to login to a Citrix XenApp Server ( OS Server 2012 R2 ) users were getting a frozen Welcome Screen. The loading ‘Circle” would […]
Powershell – List group Memberships in 365 of Distribution groups and Unified groups
[pastacode lang=”markdown” manual=”%24groups%3DGet-UnifiedGroup%0A%0Aforeach(%24group%20in%20%24groups)%0A%7B%0A%20%20%20%20Write-Host%20%22************************************************%22%0A%20%20%20%20Write-Host%20%22GroupName%3A%20%22%20%20%24group.DisplayName%0A%20%20%20%20Write-Host%20%22Email%3A%20%22%20%20%24group.primarySMTPAddress%0A%20%20%20%20Write-Host%20%22—%20Members%20—%22%0A%20%20%20%20%24membersOfGroup%3DGet-UnifiedGroupLinks%20-Identity%20%24group.Identity%20-LinkType%20Members%0A%20%20%20%20foreach(%24member%20in%20%24membersOfGroup)%0A%20%20%20%20%7B%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20Get-Recipient%20-Identity%20%24member.Name%20%7C%20select%20PrimarySmtpAddress%20%7CFormat-Wide%20%0A%20%20%20%20%7D%0A%20%20%20%20%20%0A%7D%0A%0A%0A%24groups%3DGet-DistributionGroup%0A%0Aforeach(%24group%20in%20%24groups)%0A%7B%0A%20%20%20%20Write-Host%20%22************************************************%22%0A%20%20%20%20Write-Host%20%22GroupName%3A%20%22%20%20%24group.DisplayName%0A%20%20%20%20Write-Host%20%22Email%3A%20%22%20%20%24group.primarySMTPAddress%0A%20%20%20%20Write-Host%20%22—%20Members%20—%22%0A%20%20%20%20%24membersOfGroup%3DGet-DistributionGroupMember%20-Identity%20%24group.Identity%0A%20%20%20%20foreach(%24member%20in%20%24membersOfGroup)%0A%20%20%20%20%7B%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20Get-Recipient%20-Identity%20%24member.Name%20%7C%20select%20PrimarySmtpAddress%20%7CFormat-Wide%20%0A%20%20%20%20%7D%0A%20%20%20%20%20%0A%7D” message=”” highlight=”” provider=”manual”/]