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, […]
Category: Technical
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 […]
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: […]
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 […]
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, […]
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 […]