Exchange – Hide Contacts from Address Book

5d05eb33135798a962e3199db1fa4a4c

If you have mail contacts in your Exchange environment then you may want to hide them from your global address book if you are using them as forwarders. To do this, open up Exchange Management Shell (EMS) and run the following command: Get-MailContact -OrganizationalUnit “ADOU” | Set-MailContact -hiddenfromaddresslistsenabled $true where: “ADOU” = Organisational Unit $true … Read more

SCSM – How to generate a strong name signature key file to seal a Management Pack

ssc 0

If you are using System Center Service Manager and creating custom management packs then you will want to seal them with a strong name signature. To do this, you will need to first of all generate the key file to allow you to use it when sealing your management pack. You need to use the … Read more

Exchange 2007 – Create Multiple Mailboxes using Powershell

Exchange 2013 1

We were recently setting up a test lab with an old version of Exchange 2007 to replicate a customers environment and we had created the required 250 users in Active Directory using some scripts but we also had to then create the mailboxes for these accounts. Not wanting to sit there manually creating all these … Read more

Enabling inactive Mimecast Outlook Plugin add-in that keeps being unloaded in Outlook

outlook blue logo

To enable an inactive add-in that keeps unloading on restart in Outlook you should follow these steps: First shut down Outlook, then uninstall the software providing the add-in from your machine. Then go into regedit whilst logged in as the affected user and go to the following location: HKEY_CURRENT_USERSoftwareMicrosoftOffice15.0OutlookResiliency Delete the REG_BINARY keys found in … Read more

Outlook Mail Server Settings

outlook blue logo

This post details how to setup Outlook client for use with online mail services. This is just a quick reminder for ourselves and is taken from the Microsoft website but feel free to use this information. Gmail accounts Before you can add a Gmail account to Outlook, you’ll need to Prepare your Gmail account for … Read more

Windows XP Activation

windowsxp

We have had a few requests from visitors to our site asking how they an activate Windows XP. Well, the simple answer is, you can’t and you should upgrade to Windows 10. However, saying you can’t is not quite right… As most of you will already know, Microsoft have ended support for Windows XP some … Read more

Inject Windows Updates into WIM Image Files Using PowerShell

ssc 0

To inject Windows Updates into custom-built images that you are using in your Configuration Manager OSD environment, you may find that keeping them up to date is a real problem. If you are happy with the image itself and do not want to make any changes to it, why should you need to rebuild and … Read more

Exchange – Get Dynamic Distribution Group Individual Members Email Addresses

5d05eb33135798a962e3199db1fa4a4c

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