Categories
Software Technical

Old Error, Now New

It’s back again: Source: MSExchangeIS Error ID: 9646 Description: Mapi session “xxxx: /o=OrganizationName/ ou=AdministrativeGroupName/cn=Recipients/cn=UserName” exceeded the maximum of 500 objects of type “objtFolder”. Microsoft Exchange 2010 server logs the above message. While on the client end Outlook client doesn’t update folders automatically. The number of server-side objects that are allowed by clients is limited to prevent […]

Categories
How-To Software Technical

Upgrade Windows Server without Re-installing

Like in my previous post, we will be using the DISM.exe command (Deployment Image Servicing and Management Tool), that is available in Windows 7 and Windows Server 2008 R2. This time to change the version of Server 2008 R2 from Standard to Enterprise Edition. Click on the “Start Button” Type Power, PowerShell will then show under programs, […]

Categories
How-To Software Technical

Version of Server Install via PowerShell and DISM

Today’s command that we are going to use is the DISM.exe command (Deployment Image Servicing and Management Tool), that is available in Windows 7 and Windows Server 2008 R2. More on this here <– click that On the server you want to run this command open up PowerShell as an administrator. Click on the “Start Button” Type […]

Categories
How-To Software

Create New Exchange 2010 Mailbox Database with PowerShell

Here is a short hot-to use the PowerShell to create a new exchange mailbox database. I recently learned how to do this when setting up databases for my new Exchange 2010 setup and again today I went over the steps. Today I will share them with you.   First you will need to run the Exchange […]

Categories
How-To Software

Howto: Upgrade Ubuntu Version of Server

To upgrade from Ubuntu server system to the latest server: 1- install the update-manager-core package if it is not already installed: sudo apt-get install update-manager-core 2- This is optional, you can update without doing this: Edit /etc/update-manager/release-upgrades and set Prompt=normal; 3- Launch the upgrade tool with the command sudo do-release-upgrade -d and follow the on-screen […]

Categories
How-To Software Technical

Exchange 2010 Outlook AD photo import/export

To export a photo from AD use the following command: $a= Get-ADUser USERNAME -Properties thumbnailphoto $a.thumbnailphoto | Set-Content c:pathphoto.jpg -Encoding byte To search all users and export their attribute of jpegPhoto if you want to use them for thumbnailPhoto attribute, use the following script taken from here http://social.technet.microsoft.com/Forums/ar-SA/ITCG/thread/4a1c0537-493c-409f-8ed3-b0798ad9f768 $filter = ‘(&(objectCategory=Person)(objectClass=User))’ $root= New-Object System.DirectoryServices.DirectoryEntry(“LDAP://RootDSE“) $searcher = New-Object […]