SIGN UP MEMBER LOGIN:    
Blog

Using PowerShell get all the languages packs installed on web servers in the SharePoint 2010 farm

Posted by Vijai Anand Blogs | SharePoint May 07, 2011
in this blog we will be seeing how to get all the languages packs installed on web servers in the SharePoint 2010 farm using PowerShell

Steps Involved:

·         Go to Start => All Programs => Microsoft SharePoint 2010 Products =>SharePoint 2010 Management Shell.

·         Run as an administrator.

·         Script:

$site=get-spsite "http://servername:22222/sites/Test/"$web=$site.RootWeb

$installedLanguages = $web.RegionalSettings.InstalledLanguages

foreach ($language in $installedLanguages)

{

   write-host -f green "Name: " $language.DisplayName "LCID: " $language.LCID

}                      

 

 

 
 

share this blog :
post comment