This Powershell script is very helpful if you want to have all email addresses in the Exchange organization. Save the following script to a .ps1 file and execute from Exchange Powershell: cls write-host "`nSMTP Address export to file `n`n`n" write-host "Where do you want to store the export-file? (c:\smtpexport.csv)`n`n" $location = read-host "enter path/filename" Get-Mailbox -ResultSize Unlimited | Select-Object DisplayName,ServerName,PrimarySmtpAddress,@{Name=“EmailAddresses”;Expression={$_.EmailAddresses …
Read More »RDS 2008R2 Basic Machine Policy
When you are deploying your RDS servers you probably (like me) want to make everything managable from a single point. So i don’t like to make a lot of changes to the local system by hand, but i prefer to set them with the use of a Group Policy. In this case a Machine Policy
Read More »Change tray Balloon Tip display time
The balloon tip to change your password is only shown for a few seconds. Often users complain that they can’t read the balloon tip that fast. So we have to increase the display time of the balloon. Solution: Make a change to the Registry by using a GPO Open your RDS Server User Policy and expand the following folders: User …
Read More »Show password expires balloon notification
Users have to be notified on time to change their password, but what if that notification isn’t displayed?
Read More »Force Classic Control Panel
Most often you want to restrict access to control panel items, but you probably want to see some icons (for example Regional Settings, Mouse and Mail). By default Server 2008R2 only shows the categories and not the individual icons. Let’s make it the classic look, so we see our icons right away. Solution: Make a change to the Registry by using a GPO …
Read More »Show mail icon in control panel
With the lockdown of Server 2008R2 RDS you have the opperunity to show only specific control panel items. So i want to show my users the Mail icon.
Read More »Exchange 2010 find specific email address with Powershell
Looking for a specific email address and want to know if it exists or which users owns that address?
Read More »