Exchange GAL error Analysis – Eventid 9325

Hi Readers, If you want to troubleshoot:- Why some users are not available in Offilne address book & also have issues with Default Global address List in exchange then this post might interests you. First of all go to exchange management console & enable the diagnostics logging of Offline address book generator server to medium.…

Install SharePoint 2010 Language packs

Hi Readers, We have to install 11 language packs in our share point environment that consists of  several servers. Here is the method that we used to reduce the effort. 1.  Downloaded all the language packs (Foundation & Server) Don’t forget to create logs folder. For example:-  Below screen shot for Chinese simplified folder. 2.…

Exchange ActiveSync – Report

Hi All, This script I have used to extract activesync details from exchange 2007 server. below are the details:- Userid DeviceType DeviceID DeviceUserAgent FirstSyncTime LastSuccessSync Identity DeviceModel DeviceFriendlyName DeviceOS Extract the zip file & run the batch file. http://gallery.technet.microsoft.com/scriptcenter/Exchange-ActiveSync-Report-92279541 here is the report: PowerShell #############################################################################  #       Author: Vikas Sukhija  #       Date: 07/31/2013  #       Description: Extract the Active Sync stats  #############################################################################  # Add Exchange Shell…  If ((Get-PSSnapin | where {$_.Name -match “Exchange.Management”}) -eq $null)  {      Add-PSSnapin Microsoft.Exchange.Management.PowerShell.Admin  }  #format Date …

Update Group Members from CSV

Hi All, Today I am sharing my old script that I had used for updating the group members from CSV file. I was performing the same activity today so thought of sharing it. You just have to Prepare CSV as below:-   after that just define group name inside the script. ############################# $grp = ##############################…