sccm logo

SCCM – Create a device collection based on Exchange Server role

Following on from our recent posts for Configuration Manager collection queries, we have another one here for all devices that are Microsoft Exchange servers. Go ahead and create a new device collection and then use this query: select * from SMS_R_System inner join SMS_G_System_SERVICE on SMS_G_System_SERVICE.ResourceId = SMS_R_System.ResourceId where SMS_G_System_SERVICE.Name like “Microsoft Exchange%” Save the…

Read More
5d05eb33135798a962e3199db1fa4a4c

Exchange – Get Dynamic Distribution Group Individual Members Email Addresses

If you are using Exchange in our organisation and have dynamic distribution groups, you may want to get all the information about the individual users within these distribution groups and also list their email addresses. To do this, open up an Exchange Management Shell console and run the following script: $group = Get-DynamicDistributionGroup –identity “yourDL”…

Read More
5d05eb33135798a962e3199db1fa4a4c

Exchange Server – Anti-Spam Recipient Filtering

If you want to add multiple specific email addresses to your Exchange Anti-Spam Recipient Filtering then you can use Exchange Management Shell to run a command to add comma separated multiple email addresses. The command you should run is this: Set-RecipientFilterConfig -BlockedRecipients joe@bloggs.com,steve@techygeekshome.info,bob@mail.com You can keep adding email addresses to the list for what you…

Read More
Exchange 2013 1

Renew a Self Signed Certificate on an Exchange Server 2007

If you are using an Exchange system and have self signed certificates, every year you will have to renew the certificate. An expired certificate may cause problems such as connectivity to web services, SMTP transport and Outlook prompting certificate security warnings which is extremely annoying for users and also can cause problems with Out of Office settings. To do this is very…

Read More