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 Technical

Find my Exchange 2010 version with the help of PowerShell

You have exchange running.  What’s this; Microsoft has released SP2.  Well what version am I running. The answer is simple to obtain with a quick little PowerShell fun you can have it in seconds. First you will need to run the Exchange Management Shell. Once you have this running you will issue the following command: […]

Categories
How-To Technical

Modify the number of simultaneous Remote/Local Move Request on Exchange 2010

By default Exchange 2010 just move 5 mailboxes simultaneously. To increase or decrees this it you have to change a configuration file for Mailbox Replication Service. Open the file C:Program FilesMicrosoftExchange ServerV14BinMSExchangeMailboxReplication.exe.config; Increase the values to a number of simultaneous active moves that you want. These values are: MaxActiveMovesPerSourceMDB, MaxActiveMovesPerTargetMDB, MaxActiveMovesPerSourceServer, MaxActiveMovesPerTargetServer, MaxTotalMovesPerMRS <!– Mailbox Replication […]

Categories
News Technical

SkyDrive for Windows and Mac

SkyDrive is back, and full integration in Windows and Mac SkyDrive for Windows is the easiest way to access your SkyDrive from your PC. When you install SkyDrive, a SkyDrive folder is created on your PC. Everything you put in this folder is automatically kept in sync between your computers (PC or Mac) and SkyDrive.com, […]

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 […]